2024-05-29 19:22:58 +00:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Questionable.Model.V1.Converter;
|
2024-05-27 19:54:34 +00:00
|
|
|
|
|
2024-05-29 19:22:58 +00:00
|
|
|
|
namespace Questionable.Model.V1;
|
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(EmoteConverter))]
|
2024-06-14 09:37:33 +00:00
|
|
|
|
public enum EEmote
|
2024-05-27 19:54:34 +00:00
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
|
|
|
|
|
Stretch = 37,
|
|
|
|
|
Wave = 16,
|
|
|
|
|
Rally = 34,
|
|
|
|
|
Deny = 25,
|
2024-05-29 19:22:58 +00:00
|
|
|
|
Pray = 58,
|
2024-06-13 15:35:33 +00:00
|
|
|
|
Slap = 111,
|
|
|
|
|
Doubt = 12,
|
|
|
|
|
Psych = 30,
|
2024-05-27 19:54:34 +00:00
|
|
|
|
}
|