mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
27 lines
448 B
C#
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";
|
|
}
|
|
}
|
|
}
|