Kavita/API/DTOs/LibraryDto.cs
2020-12-17 11:27:19 -06:00

13 lines
No EOL
311 B
C#

using System.Collections.Generic;
using API.Entities;
namespace API.DTOs
{
public class LibraryDto
{
public string Name { get; set; }
public string CoverImage { get; set; }
public LibraryType Type { get; set; }
public ICollection<string> Folders { get; set; }
}
}