Add rating to chapter page & volume (if one chapter)
This commit is contained in:
parent
e96cb0fde9
commit
8ccc2b5801
18 changed files with 226 additions and 47 deletions
7
API/DTOs/UpdateChapterRatingDto.cs
Normal file
7
API/DTOs/UpdateChapterRatingDto.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
namespace API.DTOs;
|
||||
|
||||
public class UpdateChapterRatingDto
|
||||
{
|
||||
public int ChapterId { get; init; }
|
||||
public float Rating { get; init; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue