From 3c6cd78971f612e9c775749fe5ddd5a4322abd60 Mon Sep 17 00:00:00 2001 From: CWX Date: Sun, 12 Jan 2025 18:40:49 +0000 Subject: [PATCH] Add missing prop and renamed upd --- Core/Models/Eft/Common/Tables/Item.cs | 2 +- Core/Models/Eft/Common/Tables/TemplateItem.cs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Core/Models/Eft/Common/Tables/Item.cs b/Core/Models/Eft/Common/Tables/Item.cs index e018f0ad..f4e885f5 100644 --- a/Core/Models/Eft/Common/Tables/Item.cs +++ b/Core/Models/Eft/Common/Tables/Item.cs @@ -23,7 +23,7 @@ public class Item public string? Desc { get; set; } [JsonPropertyName("upd")] - public Upd? Update { get; set; } + public Upd? Upd { get; set; } } public class ItemLocation diff --git a/Core/Models/Eft/Common/Tables/TemplateItem.cs b/Core/Models/Eft/Common/Tables/TemplateItem.cs index 4b2ec2ed..6b2e2ef7 100644 --- a/Core/Models/Eft/Common/Tables/TemplateItem.cs +++ b/Core/Models/Eft/Common/Tables/TemplateItem.cs @@ -1350,6 +1350,9 @@ public class Props [JsonPropertyName("Hands")] public string? Hands { get; set; } + [JsonPropertyName("Feet")] + public string? Feet { get; set; } + [JsonExtensionData] public Dictionary OtherProperties { get; set; } }