14 lines
268 B
C#
14 lines
268 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Spt.Ragfair;
|
|
|
|
public record TplWithFleaPrice
|
|
{
|
|
[JsonPropertyName("tpl")]
|
|
public string? Tpl { get; set; }
|
|
|
|
// Roubles
|
|
[JsonPropertyName("price")]
|
|
public decimal? Price { get; set; }
|
|
}
|