RQProfileLogouItemViewModel.m 308 B

1234567891011121314151617
  1. //
  2. // RQProfileLogouItemViewModel.m
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/8/2.
  6. //
  7. #import "RQProfileLogouItemViewModel.h"
  8. @implementation RQProfileLogouItemViewModel
  9. - (instancetype)init {
  10. if (self = [super init]) {
  11. self.rowHeight = RQ_FIT_HORIZONTAL(104.f);
  12. }
  13. return self;
  14. }
  15. @end