11 lines
217 B
C#
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,
|
|
}
|