make requests use interface

This commit is contained in:
CWX
2025-01-12 15:32:12 +00:00
parent e4baba50d1
commit 4f5f2b40f1
45 changed files with 131 additions and 87 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; }
}
}