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
43 lines
671 B
//
|
|
// SecuritySession.h
|
|
// deviceiOS
|
|
//
|
|
// Created by nansong.zxc on 2020/3/26.
|
|
// Copyright © 2020 security.net. All rights reserved.
|
|
//
|
|
|
|
#ifndef SecuritySession_h
|
|
#define SecuritySession_h
|
|
|
|
/**
|
|
* 设备指纹deviceToken
|
|
*/
|
|
|
|
@interface SecuritySession : NSObject
|
|
|
|
/**
|
|
* 获取Session操作的结果
|
|
*/
|
|
@property(atomic) int code;
|
|
|
|
/**
|
|
* 包含Session结果的字符串
|
|
*/
|
|
@property(copy, atomic) NSString *session;
|
|
|
|
@end
|
|
|
|
@interface SecuritySessionId : NSObject
|
|
|
|
/**
|
|
* 获取SessionID操作的结果
|
|
*/
|
|
@property(atomic) int code;
|
|
|
|
/**
|
|
* 包含Session结果的字符串
|
|
*/
|
|
@property(copy, atomic) NSString *sessionId;
|
|
|
|
@end
|
|
#endif /* SecuritySession_h */
|