Added support for savemaxpower

This commit is contained in:
2021-10-31 02:57:30 -04:00
parent 05340b5cc8
commit aa68670221
12 changed files with 1080 additions and 11 deletions

View File

@@ -28,7 +28,7 @@ namespace TOOHUCardAPI.DTO
[JsonProperty("luck_crit")] public float LuckCrit { get; set; }
[JsonProperty("new_card_list")] public string NewCardList { get; set; } = string.Empty;
[JsonProperty("open_day_list")] public string OpenDayList { get; set; } = string.Empty;
[JsonProperty("is_open_day")] public int IsOpenDay { get; set; }
[JsonProperty("is_open_day")] public int IsOpenDay { get; set; } = 1;
[JsonProperty("server_time")] public string ServerTime { get; set; } = string.Empty;
}