mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-10-19 21:10:34 -04:00
17 lines
335 B
C#
17 lines
335 B
C#
namespace API.Entities;
|
|
|
|
public sealed record HighlightSlot
|
|
{
|
|
public int Id { get; set; }
|
|
public int SlotNumber { get; set; }
|
|
public RgbaColor Color { get; set; }
|
|
}
|
|
|
|
public struct RgbaColor
|
|
{
|
|
public int R { get; set; }
|
|
public int G { get; set; }
|
|
public int B { get; set; }
|
|
public float A { get; set; }
|
|
}
|