mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 09:50:43 -05:00
19 lines
463 B
C#
19 lines
463 B
C#
|
using EFT;
|
|||
|
using Newtonsoft.Json;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Aki.Debugging.BTR.Models
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|