Implements dataloading
This commit is contained in:
11
PkmnLib.Dataloader/Models/SerializedItem.cs
Normal file
11
PkmnLib.Dataloader/Models/SerializedItem.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user