Added some player response stuff, gameconfig changes
This commit is contained in:
23
TOOHUCardAPI/Models/PlayerDataResponse.cs
Normal file
23
TOOHUCardAPI/Models/PlayerDataResponse.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user