10 lines
217 B
C#
10 lines
217 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TOOHUCardAPI.DTO.PlayerData
|
|
{
|
|
public class PlayerDataBuyMagicKeyResponse : OkResponse
|
|
{
|
|
[JsonProperty("cost_point")]
|
|
public int TotalCost { get; set; }
|
|
}
|
|
} |