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

@@ -34,6 +34,7 @@ namespace TOOHUCardAPI.DTO.PlayerData
[JsonProperty("level_list")] public string LevelList { get; set; } = string.Empty;
[JsonProperty("is_first_win")]public int IsFirstWin { get; set; }
[JsonProperty("key_use_count")] public int KeyUseCount { get; set; }
[JsonProperty("power_max_total")] public int PowerMaxTotal { get; set; }
public Dictionary<string, object> ToDynamicProperties()
{

View File

@@ -0,0 +1,7 @@
namespace TOOHUCardAPI.DTO.PlayerData
{
public class PlayerDataSavePowerMaxTotalRequest : AbstractPlayerTargetedRequest
{
public string Op { get; set; }
}
}