0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
2023-03-03 18:52:31 +00:00

27 lines
448 B
C#

using Aki.SinglePlayer.Models.Healing;
using Newtonsoft.Json;
using EFT;
namespace Aki.SinglePlayer.Models.Progression
{
public class SaveProfileRequest
{
[JsonProperty("exit")]
public string Exit;
[JsonProperty("profile")]
public Profile Profile;
[JsonProperty("isPlayerScav")]
public bool IsPlayerScav;
[JsonProperty("health")]
public PlayerHealth Health;
public SaveProfileRequest()
{
Exit = "left";
}
}
}