1234567891011121314151617181920 |
- //
- // ShoesPeripheralMolde.h
- // Unity-iPhone
- //
- // Created by duowan123 on 2022/8/19.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import <CoreBluetooth/CoreBluetooth.h>
- @interface ShoesPeripheralMolde : NSObject
- @property (nonatomic, assign) NSInteger numberId;
- @property (nonatomic, strong) NSString *titleStr;
- @property (nonatomic, strong) NSString *imageUrl;
- @property (nonatomic, strong) CBPeripheral *peripheral;
- @end
|