mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			349 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			349 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs;
 | 
						|
#nullable enable
 | 
						|
 | 
						|
public sealed record UpdateSeriesDto
 | 
						|
{
 | 
						|
    public int Id { get; init; }
 | 
						|
    public string? LocalizedName { get; init; }
 | 
						|
    public string? SortName { get; init; }
 | 
						|
    public bool CoverImageLocked { get; set; }
 | 
						|
 | 
						|
    public bool SortNameLocked { get; set; }
 | 
						|
    public bool LocalizedNameLocked { get; set; }
 | 
						|
}
 |