d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
21 lines
433 B
C#
21 lines
433 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 MongoId Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Amount of money to take off player for treatment
|
|
/// </summary>
|
|
[JsonPropertyName("count")]
|
|
public double? Count { get; set; }
|
|
}
|