Files
SPT-Server-Build/Libraries/Core/Models/Spt/Bots/ChooseRandomCompatibleModResult.cs
T
2025-02-07 19:36:17 +00:00

42 lines
636 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Spt.Bots;
public record ChooseRandomCompatibleModResult
{
[JsonPropertyName("incompatible")]
public bool? Incompatible
{
get;
set;
}
[JsonPropertyName("found")]
public bool? Found
{
get;
set;
}
[JsonPropertyName("chosenTpl")]
public string? ChosenTemplate
{
get;
set;
}
[JsonPropertyName("reason")]
public string? Reason
{
get;
set;
}
[JsonPropertyName("slotBlocked")]
public bool? SlotBlocked
{
get;
set;
}
}