mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-05 06:35:30 -04:00
12 lines
326 B
C#
12 lines
326 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; }
|
|
public byte[] CoverImage { get; set; }
|
|
}
|
|
} |