2023-08-05 17:26:09 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2023-03-03 18:52:31 +00:00
|
|
|
|
using EFT;
|
2023-08-05 17:26:09 +00:00
|
|
|
|
using System.Collections.Generic;
|
2024-05-21 19:10:17 +01:00
|
|
|
|
using SPT.SinglePlayer.Models.Healing;
|
|
|
|
|
using SPT.SinglePlayer.Models.RaidFix;
|
2023-03-03 18:52:31 +00:00
|
|
|
|
|
2024-05-21 19:10:17 +01:00
|
|
|
|
namespace SPT.SinglePlayer.Models.Progression
|
2023-03-03 18:52:31 +00:00
|
|
|
|
{
|
|
|
|
|
public class SaveProfileRequest
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("exit")]
|
|
|
|
|
public string Exit;
|
|
|
|
|
|
|
|
|
|
[JsonProperty("profile")]
|
|
|
|
|
public Profile Profile;
|
|
|
|
|
|
|
|
|
|
[JsonProperty("isPlayerScav")]
|
|
|
|
|
public bool IsPlayerScav;
|
|
|
|
|
|
|
|
|
|
[JsonProperty("health")]
|
|
|
|
|
public PlayerHealth Health;
|
|
|
|
|
|
2023-08-05 17:26:09 +00:00
|
|
|
|
[JsonProperty("insurance")]
|
2024-05-21 19:10:17 +01:00
|
|
|
|
public List<SPTInsuredItemClass> Insurance;
|
2023-08-05 17:26:09 +00:00
|
|
|
|
|
2023-03-03 18:52:31 +00:00
|
|
|
|
public SaveProfileRequest()
|
|
|
|
|
{
|
|
|
|
|
Exit = "left";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|