1
0
mirror of synced 2024-12-18 09:15:54 +01:00
GC-local-server-rewrite/Domain/Enums/ShowFastSlowOption.cs
2023-02-21 22:45:51 +08:00

20 lines
469 B
C#

using System.ComponentModel.DataAnnotations;
using NetEscapades.EnumGenerators;
namespace Domain.Enums;
[EnumExtensions]
public enum ShowFastSlowOption : long
{
[Display(Name = "Default option")]
Default = 0,
[Display(Name = "Show fast/slow near avatars")]
NearAvatar = 1,
[Display(Name = "Show fast/show near judgement text")]
NearJudgement = 2,
[Display(Name = "Do not show fast/slow")]
NotShow = 3
}