10 lines
282 B
C#
10 lines
282 B
C#
using System.Text.Json.Nodes;
|
|
|
|
namespace PkmnLib.Dynamic.Libraries.DataLoaders.Models;
|
|
|
|
public class SerializedAbility
|
|
{
|
|
public string? Effect { get; set; }
|
|
public Dictionary<string, JsonNode> Parameters { get; set; } = new();
|
|
public string[] Flags { get; set; } = [];
|
|
} |