79e023392b
Enabled 'rudans' patrol flag in Christmas event
17 lines
426 B
C#
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; }
|
|
}
|