Add more types
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Core.Models.Spt.Bots;
|
||||
|
||||
public class 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user