mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-30 19:54:14 -04:00
11 lines
279 B
C#
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; }
|
|
}
|
|
} |