19 lines
514 B
C#
19 lines
514 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Game;
|
|
|
|
public record GetItemPricesResponse
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("supplyNextTime")]
|
|
public double? SupplyNextTime { get; set; }
|
|
|
|
[JsonPropertyName("prices")]
|
|
public Dictionary<string, double>? Prices { get; set; }
|
|
|
|
[JsonPropertyName("currencyCourses")]
|
|
public Dictionary<string, double>? CurrencyCourses { get; set; }
|
|
}
|