RQExciseExplainHeaderGroupViewModel.m 395 B

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