11 lines
279 B
C#
11 lines
279 B
C#
|
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();
|
||
|
}
|