0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00

32 lines
598 B
C#
Raw Normal View History

using Newtonsoft.Json;
2023-03-03 18:52:31 +00:00
using EFT;
using System.Collections.Generic;
using Aki.SinglePlayer.Models.Healing;
using Aki.SinglePlayer.Models.RaidFix;
2023-03-03 18:52:31 +00:00
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;
[JsonProperty("insurance")]
public List<AkiInsuredItemClass> Insurance;
2023-03-03 18:52:31 +00:00
public SaveProfileRequest()
{
Exit = "left";
}
}
}