mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
14 lines
430 B
C#
14 lines
430 B
C#
namespace API.DTOs
|
|
{
|
|
public class UpdateSeriesDto
|
|
{
|
|
public int Id { get; init; }
|
|
public string Name { get; init; }
|
|
public string LocalizedName { get; init; }
|
|
public string SortName { get; init; }
|
|
public string Summary { get; init; }
|
|
public byte[] CoverImage { get; init; }
|
|
public int UserRating { get; set; }
|
|
public string UserReview { get; set; }
|
|
}
|
|
} |