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

18 lines
475 B
C#
Raw Normal View History

using EFT;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace Aki.SinglePlayer.Utils.TraderServices
{
public class TraderServiceModel
{
[JsonProperty("serviceType")]
public ETraderServiceType ServiceType { get; set; }
[JsonProperty("itemsToPay")]
public Dictionary<string, int> ItemsToPay { get; set; }
[JsonProperty("subServices")]
public Dictionary<string, int> SubServices { get; set; }
}
}