mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
21 lines
446 B
C#
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;
|
|
}
|
|
}
|