RQCommonSwitchItemViewModel.h 327 B

123456789101112131415
  1. //
  2. // RQCommonSwitchItemViewModel.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/27.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import "RQCommonValueItemViewModel.h"
  9. @interface RQCommonSwitchItemViewModel : RQCommonValueItemViewModel
  10. /// 开关状态
  11. @property (nonatomic, readwrite, assign) BOOL off;
  12. @end