16 lines
293 B
C#
16 lines
293 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace OakArchive.Entities.Enums;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum Category
|
|
{
|
|
[JsonPropertyName("Energy")]
|
|
Energy,
|
|
|
|
[JsonPropertyName("Pokemon")]
|
|
Pokemon,
|
|
|
|
[JsonPropertyName("Trainer")]
|
|
Trainer
|
|
} |