| 1234567891011121314151617181920 |
- //
- // ScanHomeCellTableViewCell.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 5/12/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ScanHomeCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *labeltitle;
- @property (weak, nonatomic) IBOutlet UIButton *btnview;
- @property (weak, nonatomic) IBOutlet UILabel *labeldate;
- @end
- NS_ASSUME_NONNULL_END
|