31 lines
586 B
C#
31 lines
586 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;
|
|
}
|
|
}
|