Files
2025-08-21 09:46:00 +00:00

17 lines
363 B
C#

using System.Text.Json.Serialization;
using SPTarkov.Server.Core.Models.Common;
namespace SPTarkov.Server.Core.Models.Spt.Ragfair;
public record TplWithFleaPrice
{
[JsonPropertyName("tpl")]
public MongoId Tpl { get; set; }
/// <summary>
/// Roubles
/// </summary>
[JsonPropertyName("price")]
public double Price { get; set; }
}