IdentityData.h 618 B

123456789101112131415161718192021222324
  1. //
  2. // IdentityData.h
  3. // CParam
  4. //
  5. // Created by breeze on 2017/6/20.
  6. // Copyright © 2017年 Breeze. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface IdentityData : NSObject
  10. @property (nonatomic, strong) NSString *appGID; // 客户端的Gid
  11. @property (nonatomic, strong) NSString *serverID; // 服务器分配的ServerID
  12. @property (nonatomic, strong) NSString *deviceUID; // 机器的唯一标识
  13. @property (nonatomic, strong) NSString *appUID; // 客户端的Uid
  14. // 初始化函数
  15. - (id)init;
  16. // 销毁
  17. - (void)destroy;
  18. @end