2023-02-21 15:45:51 +01:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using NetEscapades.EnumGenerators;
|
2023-02-16 17:38:01 +01:00
|
|
|
|
|
2023-02-21 15:45:51 +01:00
|
|
|
|
namespace Domain.Enums;
|
|
|
|
|
|
|
|
|
|
[EnumExtensions]
|
2023-02-16 17:38:01 +01:00
|
|
|
|
public enum ShowFeverTranceOption : long
|
|
|
|
|
{
|
2023-02-21 15:45:51 +01:00
|
|
|
|
[Display(Name = "Default option")]
|
|
|
|
|
Default = 0,
|
|
|
|
|
|
|
|
|
|
[Display(Name = "Show fever/trance")]
|
2023-02-16 17:38:01 +01:00
|
|
|
|
Show = 1,
|
2023-02-21 15:45:51 +01:00
|
|
|
|
|
|
|
|
|
[Display(Name = "Do not show fever/trance")]
|
2023-02-16 17:38:01 +01:00
|
|
|
|
NotShow = 2
|
|
|
|
|
}
|