Files
SPT-Server-Build/Core/Models/Spt/Bots/Bots.cs
T
2025-01-06 17:16:10 +00:00

12 lines
284 B
C#

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