mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 20:15:26 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
17 lines
345 B
C#
17 lines
345 B
C#
namespace Kavita.Models.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; }
|
|
}
|