12345678910111213141516171819 |
- //
- // RQProfileLogouItemViewModel.h
- // JSJP
- //
- // Created by 张嵘 on 2021/8/2.
- //
- #import "RQCommonItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQProfileLogouItemViewModel : RQCommonItemViewModel
- /// 登出的命令
- @property (nonatomic, readwrite, strong) RACCommand *logoutCommand;
- /// 登出回调
- @property (nonatomic, readwrite, strong) RACSubject *logoutSubject;
- @end
- NS_ASSUME_NONNULL_END
|