mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 05:34:21 -04:00
9 lines
180 B
C#
9 lines
180 B
C#
namespace API.DTOs;
|
|
|
|
public class UpdateRatingDto
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public int? ChapterId { get; init; }
|
|
public float UserRating { get; init; }
|
|
}
|