23 lines
443 B
C#
23 lines
443 B
C#
using System.Text.Json.Serialization;
|
|
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<string> PresetIds
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
// Id of the default preset for this tpl
|
|
public string? DefaultId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|