From cd530300cf0eb582ac7666f2a1a8415584843117 Mon Sep 17 00:00:00 2001 From: CWX Date: Tue, 14 Jan 2025 19:46:10 +0000 Subject: [PATCH] Fixed typing --- Core/Models/Eft/Common/Globals.cs | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Core/Models/Eft/Common/Globals.cs b/Core/Models/Eft/Common/Globals.cs index 5f341e59..923fd3ab 100644 --- a/Core/Models/Eft/Common/Globals.cs +++ b/Core/Models/Eft/Common/Globals.cs @@ -1294,13 +1294,13 @@ public class Mastering public class Customization { [JsonPropertyName("SavageHead")] - public Dictionary>? Head { get; set; } + public Dictionary? Head { get; set; } [JsonPropertyName("SavageBody")] - public Dictionary>? Body { get; set; } + public Dictionary? Body { get; set; } [JsonPropertyName("SavageFeet")] - public Dictionary>? Feet { get; set; } + public Dictionary? Feet { get; set; } [JsonPropertyName("CustomizationVoice")] public List? VoiceOptions { get; set; } @@ -1312,36 +1312,36 @@ public class Customization public class WildHead { [JsonPropertyName("head")] - public string Head { get; set; } + public string? Head { get; set; } [JsonPropertyName("isNotRandom")] - public string IsNotRandom { get; set; } + public bool? IsNotRandom { get; set; } [JsonPropertyName("NotRandom")] - public string NotRandom { get; set; } + public bool? NotRandom { get; set; } } public class WildBody { [JsonPropertyName("body")] - public string Body { get; set; } + public string? Body { get; set; } [JsonPropertyName("hands")] - public string Hands { get; set; } + public string? Hands { get; set; } [JsonPropertyName("isNotRandom")] - public string IsNotRandom { get; set; } + public bool? IsNotRandom { get; set; } } public class WildFeet { - [JsonPropertyName("head")] - public string Head { get; set; } + [JsonPropertyName("feet")] + public string? Feet { get; set; } [JsonPropertyName("isNotRandom")] - public string IsNotRandom { get; set; } + public bool? IsNotRandom { get; set; } [JsonPropertyName("NotRandom")] - public string NotRandom { get; set; } + public bool? NotRandom { get; set; } } public class CustomizationVoice