1
0
mirror of synced 2024-12-18 17:25:54 +01:00
GC-local-server-rewrite/Domain/Enums/ShowFeverTranceOption.cs
2023-02-21 22:45:51 +08:00

17 lines
363 B
C#

using System.ComponentModel.DataAnnotations;
using NetEscapades.EnumGenerators;
namespace Domain.Enums;
[EnumExtensions]
public enum ShowFeverTranceOption : long
{
[Display(Name = "Default option")]
Default = 0,
[Display(Name = "Show fever/trance")]
Show = 1,
[Display(Name = "Do not show fever/trance")]
NotShow = 2
}