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

20 lines
469 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 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
}