0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 08:30:46 -05:00
loot-dump-processor/Model/Input/ServiceItemCost.cs

11 lines
241 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
using Newtonsoft.Json;
namespace LootDumpProcessor.Model.Input
{
public class ServiceItemCost
{
[JsonProperty]
public Dictionary<string, ItemCost>? Costs { get; set; }
}
}