mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-30 11:25:20 -04:00
c429c50ba2
This is rough code and needs to be polished and refactored.
14 lines
348 B
C#
14 lines
348 B
C#
using System.Collections.Generic;
|
|
using API.Entities;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class LibraryDto
|
|
{
|
|
public int Id { get; init; }
|
|
public string Name { get; set; }
|
|
public string CoverImage { get; set; }
|
|
public LibraryType Type { get; set; }
|
|
public ICollection<string> Folders { get; set; }
|
|
}
|
|
} |