mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 10:37:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			383 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			383 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.ComponentModel;
 | |
| 
 | |
| namespace API.Entities.Enums.Theme;
 | |
| 
 | |
| public enum ThemeProvider
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Theme is provided by System
 | |
|     /// </summary>
 | |
|     [Description("System")]
 | |
|     System = 1,
 | |
|     /// <summary>
 | |
|     /// Theme is provided by the User (ie it's custom) or Downloaded via Themes Repo
 | |
|     /// </summary>
 | |
|     [Description("Custom")]
 | |
|     Custom = 2,
 | |
| }
 |