Files
SPT-Server-Build/Core/Models/Eft/Match/StartLocalRaidRequestData.cs
T
CWX bb887b0901 Lots of new things (#40)
* callbacks

* controllers

* Router override

* make requests use interface

* create Routers

* extra parts
2025-01-12 15:35:32 +00:00

34 lines
924 B
C#

using System.Text.Json.Serialization;
using Core.Models.Enums;
using Core.Models.Utils;
namespace Core.Models.Eft.Match;
public class StartLocalRaidRequestData : IRequestData
{
[JsonPropertyName("serverId")]
public string? ServerId { get; set; }
[JsonPropertyName("location")]
public string? Location { get; set; }
[JsonPropertyName("timeVariant")]
public string? TimeVariant { get; set; }
[JsonPropertyName("mode")]
public string? Mode { get; set; }
[JsonPropertyName("playerSide")]
public string? PlayerSide { get; set; }
[JsonPropertyName("transitionType")]
public TransitionType? TransitionType { get; set; }
[JsonPropertyName("transition")]
public Transition? Transition { get; set; }
/** Should loot generation be skipped, default false */
[JsonPropertyName("sptSkipLootGeneration")]
public bool? ShouldSkipLootGeneration { get; set; }
}