UX Overhaul Part 1 (#3047)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
This commit is contained in:
parent
5934d516f3
commit
ff79710ac6
324 changed files with 11589 additions and 4598 deletions
19
API/DTOs/Theme/ColorScapeDto.cs
Normal file
19
API/DTOs/Theme/ColorScapeDto.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue