Kavita/API/DTOs/SeriesDto.cs
2021-01-01 14:18:29 -06:00

11 lines
279 B
C#

namespace API.DTOs
{
public class SeriesDto
{
public int Id { get; set; }
public string Name { get; set; }
public string OriginalName { get; set; }
public string SortName { get; set; }
public string Summary { get; set; }
}
}