11 lines
248 B
C#
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; }
|
|
} |