Kavita/API/DTOs/LibraryDto.cs
2021-02-07 12:02:47 -06:00

14 lines
354 B
C#

using System.Collections.Generic;
using API.Entities.Enums;
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; }
}
}