1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /**
- * \~chinese
- * @header EMDeviceConfig.h
- * @abstract 已登录设备的信息类。
- * @author Hyphenate
- * @version 3.00
- *
- * \~english
- * @header EMDeviceConfig.h
- * @abstract The information of the device.
- * @author Hyphenate
- * @version 3.00
- */
- #import <Foundation/Foundation.h>
- /**
- * \~chinese
- * 登录设备配置信息。
- *
- * \~english
- * The configurations of the device that the user logs into.
- */
- @interface EMDeviceConfig : NSObject
- /**
- * \~chinese
- * 设备资源描述。
- *
- * \~english
- * The device resources.
- */
- @property (nonatomic, readonly) NSString * _Nullable resource;
- /**
- * \~chinese
- * 设备的 UUID。
- *
- * \~english
- * The device UUID.
- */
- @property (nonatomic, readonly) NSString * _Nullable deviceUUID;
- /**
- * \~chinese
- * 设备名称。
- *
- * \~english
- * The device name.
- */
- @property (nonatomic, readonly) NSString * _Nullable deviceName;
- @end
|