7 lines
140 B
C#
7 lines
140 B
C#
namespace API.DTOs;
|
|
|
|
public class UpdateChapterRatingDto
|
|
{
|
|
public int ChapterId { get; init; }
|
|
public float Rating { get; init; }
|
|
}
|