Kavita/API/DTOs/ColorScape.cs
2025-05-04 07:14:44 -07:00

12 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; }
}