mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-20 23:02:33 -04:00
5290fd8959
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
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; }
|
|
}
|