22 lines
315 B
C#
22 lines
315 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 double? Price
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|