PkmnLib.NET/PkmnLib.Dataloader/Models/SerializedItem.cs

18 lines
540 B
C#
Raw Normal View History

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; }
[JsonExtensionData]
public Dictionary<string, JsonElement>? ExtensionData { get; set; }
2024-08-18 12:22:50 +00:00
}