28a434a622
Changed Comments to adhere to xml standard in all Models. Added missing comments.
27 lines
455 B
C#
27 lines
455 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace 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;
|
|
}
|
|
}
|