20 lines
558 B
C#
20 lines
558 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
|
|
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<MongoId, double>? Prices { get; set; }
|
|
|
|
[JsonPropertyName("currencyCourses")]
|
|
public Dictionary<string, double>? CurrencyCourses { get; set; }
|
|
}
|