Files
SPT-Server-Build/Core/Models/Spt/Bots/Bots.cs
T
2025-01-05 20:28:54 +00:00

11 lines
248 B
C#

using System.Text.Json.Serialization;
namespace Types.Models.Spt.Bots;
public class Bots
{
public Dictionary<string, BotType> types { get; }
[JsonPropertyName("base")]
public BotBase Base { get; }
public BotCode core { get; }
}