1234567891011121314151617181920212223 |
- //
- // XYSetupCellModel.m
- // Starbuds
- //
- // Created by 翟玉磊 on 2019/12/30.
- // Copyright © 2019 翟玉磊. All rights reserved.
- //
- #import "XYSetupCellModel.h"
- @implementation XYSetupCellModel
- - (instancetype)init {
- if (self = [super init]) {
- _isShowMore = YES;
- _isShowSwitch = NO;
- _isShowBottomLine = YES;
- _cellHeight = 50.0f;
- }
- return self;
- }
- @end
|