mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			301 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			301 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs
 | 
						|
{
 | 
						|
    public class ServerSettingDto
 | 
						|
    {
 | 
						|
        public string CacheDirectory { get; set; }
 | 
						|
        public string TaskScan { get; set; }
 | 
						|
        public string LoggingLevel { get; set; }
 | 
						|
        public string TaskBackup { get; set; }
 | 
						|
        public int Port { get; set; }
 | 
						|
    }
 | 
						|
} |