1234567891011121314151617 |
- //
- // RQProfileLogouItemViewModel.m
- // JSJP
- //
- // Created by 张嵘 on 2021/8/2.
- //
- #import "RQProfileLogouItemViewModel.h"
- @implementation RQProfileLogouItemViewModel
- - (instancetype)init {
- if (self = [super init]) {
- self.rowHeight = RQ_FIT_HORIZONTAL(104.f);
- }
- return self;
- }
- @end
|