123456789101112131415161718 |
- //
- // RQProfilePracticeItemViewModel.m
- // jiaPei
- //
- // Created by 张嵘 on 2022/4/27.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQProfilePracticeItemViewModel.h"
- @implementation RQProfilePracticeItemViewModel
- - (instancetype)init {
- if (self = [super init]) {
- self.itemSize = CGSizeMake(RQ_SCREEN_WIDTH, RQ_FIT_HORIZONTAL(154.f));
- }
- return self;
- }
- @end
|