Kavita/API/DTOs/UpdateChapterRatingDto.cs

7 lines
140 B
C#

namespace API.DTOs;
public class UpdateChapterRatingDto
{
public int ChapterId { get; init; }
public float Rating { get; init; }
}