11 lines
297 B
C#
11 lines
297 B
C#
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();
|
|
public string[] Flags { get; set; } = [];
|
|
} |