Lots of new things (#40)

* callbacks

* controllers

* Router override

* make requests use interface

* create Routers

* extra parts
This commit is contained in:
CWX
2025-01-12 15:35:32 +00:00
committed by GitHub
parent 1854ac4e2b
commit bb887b0901
85 changed files with 1961 additions and 117 deletions
@@ -1,9 +1,10 @@
using System.Text.Json.Serialization;
using Core.Models.Enums;
using Core.Models.Utils;
namespace Core.Models.Eft.Match;
public class StartLocalRaidRequestData
public class StartLocalRaidRequestData : IRequestData
{
[JsonPropertyName("serverId")]
public string? ServerId { get; set; }
@@ -29,4 +30,4 @@ public class StartLocalRaidRequestData
/** Should loot generation be skipped, default false */
[JsonPropertyName("sptSkipLootGeneration")]
public bool? ShouldSkipLootGeneration { get; set; }
}
}