RQTimeRuleCell.h 752 B

1234567891011121314151617181920212223242526
  1. //
  2. // RQTimeRuleCell.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/11/25.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQCommonCollectionViewCell.h"
  9. #import "RQTimeRuleItemViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RQTimeRuleCell : RQCommonCollectionViewCell
  12. @property (weak, nonatomic) IBOutlet UIView *ruleOne;
  13. @property (weak, nonatomic) IBOutlet UIView *ruleTwo;
  14. @property (weak, nonatomic) IBOutlet UIView *ruleThree;
  15. @property (weak, nonatomic) IBOutlet UIView *ruleFour;
  16. @property (weak, nonatomic) IBOutlet UIView *ruleFive;
  17. @property (weak, nonatomic) IBOutlet UIView *ruleSix;
  18. @property (weak, nonatomic) IBOutlet UIView *ruleSeven;
  19. @property (weak, nonatomic) IBOutlet UIView *ruleEight;
  20. @end
  21. NS_ASSUME_NONNULL_END