2024-09-30 17:23:20 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text.Json;
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
2024-08-18 12:22:50 +00:00
|
|
|
namespace PkmnLib.Dataloader.Models;
|
|
|
|
|
|
|
|
public class SerializedItem
|
|
|
|
{
|
2024-08-23 07:24:00 +00:00
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public string ItemType { get; set; } = null!;
|
|
|
|
public string BattleType { get; set; } = null!;
|
|
|
|
public string[] Flags { get; set; } = null!;
|
2024-08-18 12:22:50 +00:00
|
|
|
public int Price { get; set; }
|
|
|
|
public byte FlingPower { get; set; }
|
2024-09-30 17:23:20 +00:00
|
|
|
|
|
|
|
[JsonExtensionData]
|
|
|
|
public Dictionary<string, JsonElement>? ExtensionData { get; set; }
|
2024-08-18 12:22:50 +00:00
|
|
|
}
|