Add wipe Response model

This commit is contained in:
CWX
2025-10-28 17:02:33 +00:00
parent 2d5535c0c8
commit 9ce50c697a
@@ -0,0 +1,11 @@
using SPTarkov.Server.Core.Models.Eft.Launcher;
using SPTarkov.Server.Core.Models.Utils;
namespace SPTarkov.Server.Core.Models.Spt.Launcher;
public record LauncherV2WipeResponse : IRequestData
{
public required bool Response { get; set; }
public required List<MiniProfile> Profiles { get; set; }
}