123456789101112131415161718192021222324252627282930313233343536 |
- //
- // ELDemoDeviceModel.h
- // AILinkBleSDK_Example
- //
- // Created by LarryZhang on 2023/2/4.
- // Copyright © 2023 zhengzida. All rights reserved.
- //
-
- #import <Foundation/Foundation.h>
-
- 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<NSNumber *> *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<NSNumber *> *)cids;
-
- @end
-
- NS_ASSUME_NONNULL_END
|