18 lines
474 B
C#
18 lines
474 B
C#
using System.Text.Json;
|
|
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 Dictionary<string, JsonElement> Core { get; init; }
|
|
}
|