1
0
mirror of synced 2025-02-16 02:32:42 +01:00
GC-local-server-rewrite/Domain/Enums/ShowFeverTranceOption.cs

17 lines
363 B
C#
Raw Normal View History

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