24 lines
487 B
C#
24 lines
487 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Eft.Launcher;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Spt.Launcher;
|
|
|
|
public class LauncherV2RemoveResponse : IRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
public required bool Response
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public required List<MiniProfile> Profiles
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|