1234567891011121314151617181920 |
- //
- // RQHomePageSectionTwoGroupViewModel.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/6/13.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQHomePageSectionTwoGroupViewModel.h"
- @implementation RQHomePageSectionTwoGroupViewModel
- /// init
- - (instancetype)init {
- if (self = [super init]) {
- self.headerHeight = 10.f;
- self.footerHeight = 10.f;
- }
- return self;
- }
- @end
|