Files
SPT-Server-Build/Libraries/Core/Models/Spt/Ragfair/TplWithFleaPrice.cs
T
TetrisGG 28a434a622 Update Models Comments
Changed Comments to adhere to xml standard in all Models.
Added missing comments.
2025-03-04 22:38:11 +01:00

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;
}
}