123456789101112131415161718192021222324 |
- //
- // NYTimeRuleCell.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/6/8.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionViewCell.h"
- #import "NYTimeRuleItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYTimeRuleCell : 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 *ruleMsg;
- @end
- NS_ASSUME_NONNULL_END
|