12345678910111213141516171819202122232425 |
- //
- // ELDemoScanVC.h
- // AILinkBleSDK_Example
- //
- // Created by LarryZhang on 2022/12/12.
- // Copyright © 2022 zhengzida. All rights reserved.
- //
-
- #import <UIKit/UIKit.h>
-
- NS_ASSUME_NONNULL_BEGIN
-
- @class ELAILinkPeripheral, ELDemoDeviceModel;
-
- @interface ELDemoScanVC : UIViewController
-
- @property (nonatomic, copy) NSArray<NSNumber *> *cids;
-
- @property (nonatomic, copy) void (^selectedBlock)(ELAILinkPeripheral *per);
-
- @property (nonatomic, strong) ELDemoDeviceModel *demoDeviceModel;
-
- @end
-
- NS_ASSUME_NONNULL_END
|