XYSetupViewModel.h 467 B

1234567891011121314151617181920212223
  1. //
  2. // XYSetupViewModel.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2019/12/30.
  6. // Copyright © 2019 翟玉磊. All rights reserved.
  7. //
  8. #import "BaseTableViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface XYSetupViewModel : BaseTableViewModel
  11. /// section数组
  12. @property (nonatomic, readwrite, strong) NSMutableArray *sectionTitleArray;
  13. /// 刷新青少年保护锁状态(开启、未开启文字)
  14. - (void)reloadYouthModeStatus;
  15. @end
  16. NS_ASSUME_NONNULL_END