1
0
mirror of synced 2024-12-19 01:35:53 +01:00
GC-local-server-rewrite/Domain/Enums/ShowFeverTranceOption.cs

17 lines
363 B
C#
Raw Normal View History

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
}