using System.Collections.Generic;
using System.Text.Json.Nodes;

namespace PkmnLib.Dataloader.Models;

public class SerializedAbility
{
    public string? Effect { get; set; }
    public Dictionary<string, JsonNode> Parameters { get; set; } = new();
}