Questionable/Questionable.Model/V1/Converter/ActionConverter.cs

20 lines
617 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()
{
2024-07-31 22:40:52 +00:00
{ EAction.Cure, "Cure" },
{ EAction.Esuna, "Esuna" },
2024-07-24 13:45:03 +00:00
{ EAction.Physick, "Physick" },
2024-07-29 19:19:22 +00:00
{ EAction.Buffet, "Buffet" },
{ EAction.Fumigate, "Fumigate" },
2024-07-20 17:09:51 +00:00
{ EAction.SiphonSnout, "Siphon Snout" },
2024-07-12 21:58:48 +00:00
{ EAction.RedGulal, "Red Gulal" },
{ EAction.YellowGulal, "Yellow Gulal" },
{ EAction.BlueGulal, "Blue Gulal" },
};
}