Lots of additions and changes

This commit is contained in:
2021-10-30 11:20:36 -04:00
parent 3051b63e44
commit 9cf11e982f
29 changed files with 557 additions and 46 deletions

View 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;
}
}