From fe07501e06df474fc43a82350573463ee3f53a4d Mon Sep 17 00:00:00 2001 From: CWX Date: Mon, 13 Jan 2025 16:08:04 +0000 Subject: [PATCH] fix type --- Core/Models/Eft/Common/Tables/CustomisationStorage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Models/Eft/Common/Tables/CustomisationStorage.cs b/Core/Models/Eft/Common/Tables/CustomisationStorage.cs index 122bc7bc..9ec9df98 100644 --- a/Core/Models/Eft/Common/Tables/CustomisationStorage.cs +++ b/Core/Models/Eft/Common/Tables/CustomisationStorage.cs @@ -8,7 +8,7 @@ public class CustomisationStorage public string? Id { get; set; } [JsonPropertyName("source")] - public string? Source { get; set; } + public CustomisationSource? Source { get; set; } [JsonPropertyName("type")] public string? Type { get; set; }