洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
671 B

7 months ago
  1. //
  2. // SecuritySession.h
  3. // deviceiOS
  4. //
  5. // Created by nansong.zxc on 2020/3/26.
  6. // Copyright © 2020 security.net. All rights reserved.
  7. //
  8. #ifndef SecuritySession_h
  9. #define SecuritySession_h
  10. /**
  11. * deviceToken
  12. */
  13. @interface SecuritySession : NSObject
  14. /**
  15. * Session操作的结果
  16. */
  17. @property(atomic) int code;
  18. /**
  19. * Session结果的字符串
  20. */
  21. @property(copy, atomic) NSString *session;
  22. @end
  23. @interface SecuritySessionId : NSObject
  24. /**
  25. * SessionID操作的结果
  26. */
  27. @property(atomic) int code;
  28. /**
  29. * Session结果的字符串
  30. */
  31. @property(copy, atomic) NSString *sessionId;
  32. @end
  33. #endif /* SecuritySession_h */