28a434a622
Changed Comments to adhere to xml standard in all Models. Added missing comments.
24 lines
353 B
C#
24 lines
353 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Spt.Ragfair;
|
|
|
|
public record TplWithFleaPrice
|
|
{
|
|
[JsonPropertyName("tpl")]
|
|
public string? Tpl
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Roubles
|
|
/// </summary>
|
|
[JsonPropertyName("price")]
|
|
public double? Price
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|