Kavita/API/DTOs/LibraryDto.cs
2021-01-01 14:04:31 -06:00

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; }
}
}