8 lines
188 B
C#
8 lines
188 B
C#
namespace API.DTOs;
|
|
|
|
public sealed record UpdateRatingDto
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public int? ChapterId { get; init; }
|
|
public float UserRating { get; init; }
|
|
}
|