mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-03 19:17:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			234 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			234 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs;
 | 
						|
#nullable enable
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// A primary and secondary color
 | 
						|
/// </summary>
 | 
						|
public class ColorScape
 | 
						|
{
 | 
						|
    public required string? Primary { get; set; }
 | 
						|
    public required string? Secondary { get; set; }
 | 
						|
}
 |