Adds battle history, fixes code style
This commit is contained in:
@@ -2,10 +2,10 @@ 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 string Name { get; set; } = null!;
|
||||
public string ItemType { get; set; } = null!;
|
||||
public string BattleType { get; set; } = null!;
|
||||
public string[] Flags { get; set; } = null!;
|
||||
public int Price { get; set; }
|
||||
public byte FlingPower { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user