Files
SPT-Server-Build/Core/Models/Spt/Ragfair/TplWithFleaPrice.cs
T
2025-01-08 13:41:25 +00:00

13 lines
264 B
C#

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