1234567891011121314151617181920212223242526 |
- //
- // RQTimeRuleCell.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/11/25.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionViewCell.h"
- #import "RQTimeRuleItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQTimeRuleCell : RQCommonCollectionViewCell
- @property (weak, nonatomic) IBOutlet UIView *ruleOne;
- @property (weak, nonatomic) IBOutlet UIView *ruleTwo;
- @property (weak, nonatomic) IBOutlet UIView *ruleThree;
- @property (weak, nonatomic) IBOutlet UIView *ruleFour;
- @property (weak, nonatomic) IBOutlet UIView *ruleFive;
- @property (weak, nonatomic) IBOutlet UIView *ruleSix;
- @property (weak, nonatomic) IBOutlet UIView *ruleSeven;
- @property (weak, nonatomic) IBOutlet UIView *ruleEight;
- @end
- NS_ASSUME_NONNULL_END
|