Created entities for database
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace OakArchive.Entities.Enums;
|
||||
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public enum Category
|
||||
{
|
||||
[JsonPropertyName("Energy")]
|
||||
Energy,
|
||||
|
||||
[JsonPropertyName("Pokemon")]
|
||||
Pokemon,
|
||||
|
||||
[JsonPropertyName("Trainer")]
|
||||
Trainer
|
||||
}
|
||||
Reference in New Issue
Block a user