mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 09:50:44 -05:00
10 lines
203 B
C#
10 lines
203 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace LootDumpProcessor.Model.Input
|
|
{
|
|
public class ServiceItemCost
|
|
{
|
|
[JsonProperty]
|
|
public Dictionary<string, ItemCost>? Costs { get; set; }
|
|
}
|
|
} |