38 lines
773 B
C#
38 lines
773 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Enums;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Match;
|
|
|
|
public record GetRaidConfigurationRequestData : RaidSettings, IRequestData
|
|
{
|
|
[JsonPropertyName("keyId")]
|
|
public string? KeyId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("onlinePveRaidStates")]
|
|
public Dictionary<string, bool>? OnlinePveRaidStates
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("MaxGroupCount")]
|
|
public int? MaxGroupCount
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("transitionType")]
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public TransitionType TransitionType
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|