| 12345678910111213141516171819202122 |
- //
- // SearchDeviceCell.h
- // FunSDKDemo
- //
- // Created by wujiangbo on 2018/11/15.
- // Copyright © 2018年 wujiangbo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SearchDeviceCell : UITableViewCell
- @property (nonatomic,strong) UILabel *nameLab;
- @property (nonatomic,strong) UILabel *serialNumLab;
- @property (nonatomic,strong) UILabel *ipLab;
- @end
- NS_ASSUME_NONNULL_END
|