Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Bots/Bots.cs
T
Chomp 79e023392b Implemented CoreBot type
Enabled 'rudans' patrol flag in Christmas event
2025-09-29 09:33:16 +01:00

17 lines
426 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Eft.Common.Tables;
namespace SPTarkov.Server.Core.Models.Spt.Bots;
public record Bots
{
[JsonPropertyName("types")]
public required Dictionary<string, BotType?> Types { get; init; }
[JsonPropertyName("base")]
public required BotBase Base { get; init; }
[JsonPropertyName("core")]
public required CoreBot Core { get; init; }
}