0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:50:43 -05:00
chomp 49acd11765 Track insured item values to be used post-raid by server (!16)
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
2023-08-05 17:26:09 +00:00

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";
}
}
}