17 lines
764 B
C#
17 lines
764 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TOOHUCardAPI.DTO
|
|
{
|
|
public class PlayerBaseDataResponse: AbstractResponse
|
|
{
|
|
[JsonProperty("steamid")]
|
|
public string SteamId { get; set; }
|
|
[JsonProperty("pet_level")] public int PetLevel { get; set; } = 1;
|
|
[JsonProperty("end_time")] public string EndTime { get; set; } = string.Empty;
|
|
[JsonProperty("key_total")] public int KeyTotal { get; set; } = 100;
|
|
[JsonProperty("key_save_date")] public string KeySaveDate { get; set; } = string.Empty;
|
|
[JsonProperty("vip")] public int Vip { get; set; } = 1;
|
|
[JsonProperty("point")] public int Point { get; set; } = 10000;
|
|
[JsonProperty("level_list")] public string LevelList { get; set; } = string.Empty;
|
|
}
|
|
} |