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

11 lines
306 B
C#
Raw Normal View History

2024-08-18 12:22:50 +00:00
namespace PkmnLib.Dataloader.Models;
public class SerializedItem
{
public string Name { get; set; }
public string ItemType { get; set; }
public string BattleType { get; set; }
public string[] Flags { get; set; }
public int Price { get; set; }
public byte FlingPower { get; set; }
}