Added missing type

This commit is contained in:
Chomp
2025-01-23 15:58:29 +00:00
parent 91fc7f842d
commit a3bc91b076
@@ -0,0 +1,14 @@
using System.Text.Json.Serialization;
namespace Core.Models.Common;
public record IdWithCount
{
/** Id of stack to take money from */
[JsonPropertyName("id")]
public string? Id { get; set; }
/** Amount of money to take off player for treatment */
[JsonPropertyName("count")]
public double? Count { get; set; }
}