d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
30 lines
622 B
C#
30 lines
622 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Bot;
|
|
|
|
public record GenerateBotsRequestData : IRequestData
|
|
{
|
|
|
|
|
|
[JsonPropertyName("conditions")]
|
|
public List<GenerateCondition>? Conditions { get; set; }
|
|
}
|
|
|
|
public record GenerateCondition
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// e.g. assault/pmcBot/bossKilla
|
|
/// </summary>
|
|
[JsonPropertyName("Role")]
|
|
public string? Role { get; set; }
|
|
|
|
[JsonPropertyName("Limit")]
|
|
public int Limit { get; set; }
|
|
|
|
[JsonPropertyName("Difficulty")]
|
|
public string? Difficulty { get; set; }
|
|
}
|