Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Presets/PresetCacheDetails.cs
T
2025-07-16 12:20:19 +01:00

17 lines
441 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
namespace SPTarkov.Server.Core.Models.Spt.Presets;
public record PresetCacheDetails
{
[JsonExtensionData]
public Dictionary<string, object>? ExtensionData { get; set; }
// Preset Ids related to the tpl
public HashSet<MongoId> PresetIds { get; set; }
// Id of the default preset for this tpl
public MongoId? DefaultId { get; set; }
}