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; } }