Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Presets/PresetCacheDetails.cs
T
2025-04-22 14:49:05 +01:00

19 lines
317 B
C#

namespace SPTarkov.Server.Core.Models.Spt.Presets;
public record PresetCacheDetails
{
// Preset Ids related to the tpl
public HashSet<string> PresetIds
{
get;
set;
}
// Id of the default preset for this tpl
public string? DefaultId
{
get;
set;
}
}