13 lines
268 B
C#
13 lines
268 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; }
|
|
} |