mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 06:20:33 -04:00
20 lines
461 B
C#
20 lines
461 B
C#
namespace API.DTOs.Theme;
|
|
#nullable enable
|
|
|
|
/// <summary>
|
|
/// A set of colors for the color scape system in the UI
|
|
/// </summary>
|
|
public class ColorScapeDto
|
|
{
|
|
public string? Primary { get; set; }
|
|
public string? Secondary { get; set; }
|
|
|
|
public ColorScapeDto(string? primary, string? secondary)
|
|
{
|
|
Primary = primary;
|
|
Secondary = secondary;
|
|
}
|
|
|
|
public static readonly ColorScapeDto Empty = new ColorScapeDto(null, null);
|
|
}
|