EMDeviceConfig.h 729 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*!
  2. * \~chinese
  3. * @header EMDeviceConfig.h
  4. * @abstract 已登录设备的信息
  5. * @author Hyphenate
  6. * @version 3.00
  7. *
  8. * \~english
  9. * @header EMDeviceConfig.h
  10. * @abstract The info of logged in device
  11. * @author Hyphenate
  12. * @version 3.00
  13. */
  14. #import <Foundation/Foundation.h>
  15. @interface EMDeviceConfig : NSObject
  16. /*!
  17. * \~chinese
  18. * 设备资源描述
  19. *
  20. * \~english
  21. * Device resources
  22. */
  23. @property (nonatomic, readonly) NSString *resource;
  24. /*!
  25. * \~chinese
  26. * 设备的UUID
  27. *
  28. * \~english
  29. * Device UUID
  30. */
  31. @property (nonatomic, readonly) NSString *deviceUUID;
  32. /*!
  33. * \~chinese
  34. * 设备名称
  35. *
  36. * \~english
  37. * Device name
  38. */
  39. @property (nonatomic, readonly) NSString *deviceName;
  40. @end