mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			430 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			430 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs
 | 
						|
{
 | 
						|
    public class UpdateSeriesDto
 | 
						|
    {
 | 
						|
        public int Id { get; init; }
 | 
						|
        public string Name { get; init; }
 | 
						|
        public string LocalizedName { get; init; }
 | 
						|
        public string SortName { get; init; }
 | 
						|
        public string Summary { get; init; }
 | 
						|
        public byte[] CoverImage { get; init; }
 | 
						|
        public int UserRating { get; set; }
 | 
						|
        public string UserReview { get; set; }
 | 
						|
    }
 | 
						|
} |