iOS AILinkBleSDK - 蓝牙SDK
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.

ELDemoDeviceModel.h 1015B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // ELDemoDeviceModel.h
  3. // AILinkBleSDK_Example
  4. //
  5. // Created by LarryZhang on 2023/2/4.
  6. // Copyright © 2023 zhengzida. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ELDemoDeviceModel : NSObject
  11. @property (nonatomic, copy) NSString *index;
  12. @property (nonatomic, copy) NSString *imageName;
  13. @property (nonatomic, copy) NSString *titleText;
  14. @property (nonatomic, copy) NSString *subtitleText;
  15. @property (nonatomic, copy) NSString *entryVCName;
  16. @property (nonatomic, strong) NSArray<NSNumber *> *cids;
  17. @property (nonatomic, assign) BOOL newType;
  18. + (instancetype)modelWithIndex:(NSString *)index imageName:(NSString *)imageName title:(NSString *)title subtitle:(NSString *)subtitle entryVCName:(NSString *)entryVCName;
  19. + (instancetype)modelWithIndex:(NSString *)index imageName:(NSString *)imageName title:(NSString *)title subtitle:(NSString *)subtitle entryVCName:(NSString *)entryVCName cids:(NSArray<NSNumber *> *)cids;
  20. @end
  21. NS_ASSUME_NONNULL_END