Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Common/IdWithCount.cs
T
2025-03-07 13:16:43 +00:00

27 lines
471 B
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Common;
public record IdWithCount
{
/// <summary>
/// ID of stack to take money from
/// </summary>
[JsonPropertyName("id")]
public string? Id
{
get;
set;
}
/// <summary>
/// Amount of money to take off player for treatment
/// </summary>
[JsonPropertyName("count")]
public double? Count
{
get;
set;
}
}