mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	* Fixed a duplicate check for updates. Changed checking from weekly to daily. * Refactored how dark variables were accessed to reduce size of component css. Refactored Stats code to use lesser information for reporting. * Use the installId from the database which is most unlikely to change. * Fixed a missing interface with stat service * Added DotnetVersion back into collection * Updated url to new host.
		
			
				
	
	
		
			13 lines
		
	
	
		
			347 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			347 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs.Stats
 | 
						|
{
 | 
						|
    public class ServerInfoDto
 | 
						|
    {
 | 
						|
        public string InstallId { get; set; }
 | 
						|
        public string Os { get; set; }
 | 
						|
        public bool IsDocker { get; set; }
 | 
						|
        public string DotnetVersion { get; set; }
 | 
						|
        public string KavitaVersion { get; set; }
 | 
						|
        public int NumOfCores { get; set; }
 | 
						|
    }
 | 
						|
}
 |