XYSetupCellModel.m 406 B

1234567891011121314151617181920212223
  1. //
  2. // XYSetupCellModel.m
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2019/12/30.
  6. // Copyright © 2019 翟玉磊. All rights reserved.
  7. //
  8. #import "XYSetupCellModel.h"
  9. @implementation XYSetupCellModel
  10. - (instancetype)init {
  11. if (self = [super init]) {
  12. _isShowMore = YES;
  13. _isShowSwitch = NO;
  14. _isShowBottomLine = YES;
  15. _cellHeight = 50.0f;
  16. }
  17. return self;
  18. }
  19. @end