Added endpoint handling there

This commit is contained in:
2021-10-25 14:43:56 -04:00
parent e2238ae982
commit 58881e5ad6
4 changed files with 64 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
namespace TOOHUCardAPI.Models
{
/**
* Fields pulled from the game code
* Looking up Gamerules.Playerdata
*/
public class PlayerDataGetResponseObject
{
public string Code { get; set; }
public string Message { get; set; }
public string SteamId { get; set; }
public int MaxWave { get; set; }
public int MaxTeamWave { get; set; }
public int PetLevel { get; set; }
public string EndTime { get; set; }
public int KeyTotal { get; set; }
public string KeySaveDate { get; set; }
public int Vip { get; set; }
public int Point { get; set; }
public string LevelList { get; set; }
}
}