Added some player response stuff, gameconfig changes

This commit is contained in:
2021-10-25 09:34:00 -04:00
parent cd55d95ba9
commit e2238ae982
5 changed files with 42 additions and 41 deletions

View File

@@ -0,0 +1,23 @@
namespace TOOHUCardAPI.Models
{
/**
* Fields pulled from the game code
* Looking up Gamerules.Playerdata
*/
public class PlayerDataResponsePlayerObject
{
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; }
}
}