Add more types

This commit is contained in:
Cj
2025-01-07 05:31:01 -05:00
parent 62c4cb17ad
commit 6febf90bfa
12 changed files with 474 additions and 0 deletions
@@ -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; }
}