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 ShowFastSlowOption : long
|
|
|
|
|
{
|
2023-02-21 15:45:51 +01:00
|
|
|
|
[Display(Name = "Default option")]
|
|
|
|
|
Default = 0,
|
|
|
|
|
|
|
|
|
|
[Display(Name = "Show fast/slow near avatars")]
|
2023-02-16 17:38:01 +01:00
|
|
|
|
NearAvatar = 1,
|
2023-02-21 15:45:51 +01:00
|
|
|
|
|
|
|
|
|
[Display(Name = "Show fast/show near judgement text")]
|
2023-02-16 17:38:01 +01:00
|
|
|
|
NearJudgement = 2,
|
2023-02-21 15:45:51 +01:00
|
|
|
|
|
|
|
|
|
[Display(Name = "Do not show fast/slow")]
|
2023-02-16 17:38:01 +01:00
|
|
|
|
NotShow = 3
|
|
|
|
|
}
|