Advertisement
ReIative

Untitled

Aug 17th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. public class ClientToken
  2. {
  3. public int AccountId;
  4. public String Name;
  5. public String Rank;
  6. public boolean RankPerm;
  7. public String RankExpire;
  8. public int EconomyBalance;
  9.  
  10. public AccountToken AccountToken;
  11. public long LastLogin;
  12. }
  13.  
  14.  
  15.  
  16. public class AccountToken
  17. {
  18. public int AccountId;
  19. public String Name;
  20. public Rank Rank;
  21.  
  22. public int LoginCount;
  23. public long LastLogin;
  24. public long TotalPlayingTime;
  25. public HashSet<String> IpAdddresses = new HashSet<String>();
  26.  
  27. public boolean Banned;
  28. public String Reason;
  29.  
  30. public int BlueGems;
  31. public int GreenGems;
  32. public List<Integer> SalesPackageIds;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement