Files
SPT-Server-Build/Libraries/Core/Models/Eft/Game/GetItemPricesResponse.cs
T
2025-02-07 19:36:17 +00:00

28 lines
482 B
C#

using System.Text.Json.Serialization;
namespace 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;
}
}