RQProfilePracticeItemViewModel.m 396 B

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