Implemented update series

This commit is contained in:
Joseph Milazzo 2021-02-18 14:07:36 -06:00
parent bdac9e6961
commit cdd44340a2
3 changed files with 41 additions and 1 deletions

View 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; }
}
}