mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
12 lines
242 B
C#
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; }
|
|
}
|