Unify ChapterRating with Rating
This commit is contained in:
parent
a9e2937651
commit
f29c63c6c4
34 changed files with 266 additions and 679 deletions
8
API/DTOs/UpdateRatingDto.cs
Normal file
8
API/DTOs/UpdateRatingDto.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
namespace API.DTOs;
|
||||
|
||||
public class UpdateRatingDto
|
||||
{
|
||||
public int SeriesId { get; init; }
|
||||
public int? ChapterId { get; init; }
|
||||
public float UserRating { get; init; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue