11 lines
283 B
C#
11 lines
283 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Eft.Profile;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Spt.Launcher;
|
|
|
|
public class LauncherV2ProfileResponse : IRequestData
|
|
{
|
|
public SptProfile Response { get; set; }
|
|
}
|