1234567891011121314151617181920 |
- //
- // RQProfileLogouItemViewModel.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/2.
- //
- #import "RQCommonItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQProfileLogouItemViewModel : RQCommonItemViewModel
- /// 登出的命令
- @property (nonatomic, readonly, strong) RACCommand *logoutCommand;
- /// 注销账号的命令
- @property (nonatomic, readonly, strong) RACCommand *signoutCommand;
- - (instancetype)initWithTitle:(NSString *)title;
- @end
- NS_ASSUME_NONNULL_END
|