PkmnLib.NET/PkmnLib.Dataloader/Models/SerializedAbility.cs

11 lines
297 B
C#
Raw Normal View History

2024-08-18 12:22:50 +00:00
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();
2025-02-03 10:40:26 +00:00
public string[] Flags { get; set; } = [];
2024-08-18 12:22:50 +00:00
}