0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:30:46 -05:00
2024-05-21 19:10:17 +01:00

21 lines
446 B
C#

using EFT.InventoryLogic.BackendInventoryInteraction;
using Newtonsoft.Json;
namespace SPT.SinglePlayer.Models.ScavMode
{
public class SellAllRequest
{
[JsonProperty("Action")]
public string Action;
[JsonProperty("totalValue")]
public int TotalValue;
[JsonProperty("fromOwner")]
public OwnerInfo FromOwner;
[JsonProperty("toOwner")]
public OwnerInfo ToOwner;
}
}