23 lines
710 B
C#
23 lines
710 B
C#
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; }
|
|
}
|
|
} |