mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			326 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			326 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace API.DTOs;
 | 
						|
 | 
						|
public sealed record CopySettingsFromLibraryDto
 | 
						|
{
 | 
						|
    public int SourceLibraryId { get; set; }
 | 
						|
    public List<int> TargetLibraryIds { get; set; }
 | 
						|
    /// <summary>
 | 
						|
    /// Include copying over the type
 | 
						|
    /// </summary>
 | 
						|
    public bool IncludeType { get; set; }
 | 
						|
 | 
						|
}
 |