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