mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
Co-authored-by: CWX <CWX@noreply.dev.sp-tarkov.com> Co-authored-by: Dev <dev@dev.sp-tarkov.com> Reviewed-on: SPT-AKI/Modules#16
32 lines
598 B
C#
32 lines
598 B
C#
using Newtonsoft.Json;
|
|
using EFT;
|
|
using System.Collections.Generic;
|
|
using Aki.SinglePlayer.Models.Healing;
|
|
using Aki.SinglePlayer.Models.RaidFix;
|
|
|
|
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;
|
|
|
|
public SaveProfileRequest()
|
|
{
|
|
Exit = "left";
|
|
}
|
|
}
|
|
}
|