diff --git a/Generator/Models/Output/Output.cs b/Generator/Models/Output/Output.cs index 69f035e..a9916e2 100644 --- a/Generator/Models/Output/Output.cs +++ b/Generator/Models/Output/Output.cs @@ -12,12 +12,12 @@ namespace Generator.Models.Output experience = new Experience(); health = new Health(); skills = new Skills(); + inventory = new Inventory(); firstName = new List(); lastName = new List(); difficulty = new Difficulty.Difficulty(); chances = new Chances(); generation = new GenerationChances(); - inventory = new Inventory(); } [JsonIgnore] @@ -26,12 +26,12 @@ namespace Generator.Models.Output public Experience experience { get; set; } public Health health { get; set; } public Skills skills { get; set; } + public Inventory inventory { get; set; } public List firstName { get; set; } public List lastName { get; set; } public Difficulty.Difficulty difficulty { get; set;} public Chances chances { get; set; } public GenerationChances generation { get; set; } - public Inventory inventory { get; set; } } public class Appearance {