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