Files
SPT-Server-Build/Core/Models/Spt/Ragfair/TplWithFleaPrice.cs
T

13 lines
269 B
C#

using System.Text.Json.Serialization;
namespace Types.Models.Spt.Ragfair;
public class TplWithFleaPrice
{
[JsonPropertyName("tpl")]
public string Tpl { get; set; }
// Roubles
[JsonPropertyName("price")]
public decimal Price { get; set; }
}