Kavita/API/Entities/HighlightSlot.cs
Joe Milazzo 5290fd8959
Text View, View & Filter All Annotations, and More OPDS Love (#4062)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
2025-09-28 12:28:21 -07:00

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