mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 13:44:31 -04:00
13 lines
314 B
C#
13 lines
314 B
C#
using System.Collections.Generic;
|
|
|
|
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; }
|
|
}
|
|
} |