mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05: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; }
 | 
						|
    }
 | 
						|
} |