mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-20 22:10:33 -04:00
11 lines
217 B
C#
11 lines
217 B
C#
namespace API.DTOs;
|
|
|
|
/// <summary>
|
|
/// A primary and secondary color
|
|
/// </summary>
|
|
public class ColorScape
|
|
{
|
|
public required string? Primary { get; set; }
|
|
public required string? Secondary { get; set; }
|
|
}
|