123456789101112131415 |
- //
- // RQCommonSwitchItemViewModel.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/27.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import "RQCommonValueItemViewModel.h"
- @interface RQCommonSwitchItemViewModel : RQCommonValueItemViewModel
- /// 开关状态
- @property (nonatomic, readwrite, assign) BOOL off;
- @end
|