Files
SPT-Server-Build/Core/Models/Eft/Game/GetItemPricesResponse.cs
T
2025-01-06 22:52:49 +00:00

15 lines
405 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Game;
public class 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; }
}