From f3f91e37b766e64c5041d1df340013c3286ca69f Mon Sep 17 00:00:00 2001 From: Cj <161484149+CJ-SPT@users.noreply.github.com> Date: Mon, 20 Oct 2025 04:22:49 -0400 Subject: [PATCH] remove unused record --- .../Models/Spt/Config/TraderConfig.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs index c3f55da2..4d01a20a 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Config/TraderConfig.cs @@ -189,15 +189,3 @@ public record DiscountOptions [JsonPropertyName("equipmentPresetMinMax")] public required MinMax EquipmentPresetMinMax { get; set; } } - -/// -/// Custom trader data needed client side for things such as the clothing service -/// -public record ModdedTraders -{ - /// - /// Trader Ids to enable the clothing service for - /// - [JsonPropertyName("clothingService")] - public List ClothingService { get; set; } = []; -}