Kavita/API/DTOs/ColorScape.cs
2025-05-04 08:41:29 -05:00

11 lines
242 B
C#

namespace API.DTOs;
#nullable enable
/// <summary>
/// A primary and secondary color
/// </summary>
public sealed record ColorScape
{
public required string? Primary { get; set; }
public required string? Secondary { get; set; }
}