1234567891011121314151617181920212223 |
- //
- // XYSetupViewModel.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2019/12/30.
- // Copyright © 2019 翟玉磊. All rights reserved.
- //
- #import "BaseTableViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface XYSetupViewModel : BaseTableViewModel
- /// section数组
- @property (nonatomic, readwrite, strong) NSMutableArray *sectionTitleArray;
- /// 刷新青少年保护锁状态(开启、未开启文字)
- - (void)reloadYouthModeStatus;
- @end
- NS_ASSUME_NONNULL_END
|