ServerPassportData.cs 547 B

12345678910111213141516171819202122
  1. using DeepMMO.Data;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace DeepMMO.Server.Gate
  6. {
  7. public class ServerPassportData
  8. {
  9. public bool Verified;
  10. public RolePrivilege Privilege;
  11. public ServerPassportData(bool verified, RolePrivilege privilege)
  12. {
  13. this.Verified = verified;
  14. this.Privilege = privilege;
  15. }
  16. } public class ServerPassportEnterGame
  17. {
  18. public bool Verified;
  19. public string Message;
  20. }
  21. }