1
0
forked from liza/Questionable

17 lines
503 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Questionable.Model.V1.Converter;
public sealed class ActionConverter() : EnumConverter<EAction>(Values)
{
private static readonly Dictionary<EAction, string> Values = new()
{
{ EAction.Esuna, "Esuna" },
2024-07-24 15:45:03 +02:00
{ EAction.Physick, "Physick" },
2024-07-20 19:09:51 +02:00
{ EAction.SiphonSnout, "Siphon Snout" },
2024-07-12 23:58:48 +02:00
{ EAction.RedGulal, "Red Gulal" },
{ EAction.YellowGulal, "Yellow Gulal" },
{ EAction.BlueGulal, "Blue Gulal" },
};
}