// // ELDemoDeviceModel.h // AILinkBleSDK_Example // // Created by LarryZhang on 2023/2/4. // Copyright © 2023 zhengzida. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface ELDemoDeviceModel : NSObject @property (nonatomic, copy) NSString *index; @property (nonatomic, copy) NSString *imageName; @property (nonatomic, copy) NSString *titleText; @property (nonatomic, copy) NSString *subtitleText; @property (nonatomic, copy) NSString *entryVCName; @property (nonatomic, strong) NSArray *cids; @property (nonatomic, assign) BOOL newType; + (instancetype)modelWithIndex:(NSString *)index imageName:(NSString *)imageName title:(NSString *)title subtitle:(NSString *)subtitle entryVCName:(NSString *)entryVCName; + (instancetype)modelWithIndex:(NSString *)index imageName:(NSString *)imageName title:(NSString *)title subtitle:(NSString *)subtitle entryVCName:(NSString *)entryVCName cids:(NSArray *)cids; @end NS_ASSUME_NONNULL_END