Fix up requests to endpoints

This commit is contained in:
Archangel
2025-08-21 21:48:11 +02:00
parent b44d9617d0
commit 53b2e5e429
6 changed files with 28 additions and 4 deletions
@@ -0,0 +1,10 @@
using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Utils;
namespace SPTarkov.Server.Core.Models.Eft.Dialog;
public record GetClientDialogueRequestData : IRequestData
{
[JsonPropertyName("traderId")]
public string? TraderId { get; set; }
}
@@ -0,0 +1,10 @@
using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Utils;
namespace SPTarkov.Server.Core.Models.Eft.Profile;
public record GetAchievementListRequest : IRequestData
{
[JsonPropertyName("completed")]
public bool? Completed { get; set; }
}