11 lines
343 B
C#
11 lines
343 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TOOHUCardAPI.DTO.PlayerData
|
|
{
|
|
public class PlayerDataSaveKeyCountRequest: AbstractPlayerTargetedRequest
|
|
{
|
|
public string UserId { get; set; }
|
|
[JsonProperty("key_total")]public int KeyTotal { get; set; }
|
|
[JsonProperty("key_use_count")]public int KeyUseCount { get; set; }
|
|
}
|
|
} |