Kavita/API/Entities/Enums/HightlightColor.cs
2025-06-30 07:19:52 -05:00

11 lines
217 B
C#

namespace API.Entities.Enums;
/// <summary>
/// Color of the highlight
/// </summary>
/// <remarks>Color may not match exactly due to theming</remarks>
public enum HightlightColor
{
Blue = 1,
Green = 2,
}