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