Lots of additions and changes
This commit is contained in:
17
TOOHUCardAPI/DTO/PlayerBaseDataResponse.cs
Normal file
17
TOOHUCardAPI/DTO/PlayerBaseDataResponse.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user