mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
12 lines
284 B
C#
12 lines
284 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class UpdateSeriesRatingDto
|
|
{
|
|
public int SeriesId { get; init; }
|
|
public int UserRating { get; init; }
|
|
[MaxLength(1000)]
|
|
public string UserReview { get; init; }
|
|
}
|
|
} |