RQHomePageSectionTwoGroupViewModel.m 406 B

1234567891011121314151617181920
  1. //
  2. // RQHomePageSectionTwoGroupViewModel.m
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/6/13.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQHomePageSectionTwoGroupViewModel.h"
  9. @implementation RQHomePageSectionTwoGroupViewModel
  10. /// init
  11. - (instancetype)init {
  12. if (self = [super init]) {
  13. self.headerHeight = 10.f;
  14. self.footerHeight = 10.f;
  15. }
  16. return self;
  17. }
  18. @end