Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Game/GetItemPricesResponse.cs
T
2025-03-07 13:16:43 +00:00

28 lines
498 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Eft.Game;
public record GetItemPricesResponse
{
[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;
}
}