Implements dataloading
This commit is contained in:
11
PkmnLib.Dataloader/Models/SerializedAbility.cs
Normal file
11
PkmnLib.Dataloader/Models/SerializedAbility.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text.Json.Nodes;
|
||||
using PkmnLib.Static.Utils;
|
||||
|
||||
namespace PkmnLib.Dataloader.Models;
|
||||
|
||||
public class SerializedAbility
|
||||
{
|
||||
public string? Effect { get; set; }
|
||||
public Dictionary<string, JsonNode> Parameters { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user