Implemented update series
This commit is contained in:
parent
bdac9e6961
commit
cdd44340a2
3 changed files with 41 additions and 1 deletions
14
API/DTOs/UpdateSeriesDto.cs
Normal file
14
API/DTOs/UpdateSeriesDto.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
namespace API.DTOs
|
||||
{
|
||||
public class UpdateSeriesDto
|
||||
{
|
||||
public int Id { get; init; }
|
||||
public string Name { get; init; }
|
||||
public string OriginalName { 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue