12 lines
No EOL
326 B
C#
12 lines
No EOL
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; }
|
|
}
|
|
} |