RQProfileLogouItemViewModel.h 469 B

1234567891011121314151617181920
  1. //
  2. // RQProfileLogouItemViewModel.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/8/2.
  6. //
  7. #import "RQCommonItemViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQProfileLogouItemViewModel : RQCommonItemViewModel
  10. /// 登出的命令
  11. @property (nonatomic, readonly, strong) RACCommand *logoutCommand;
  12. /// 注销账号的命令
  13. @property (nonatomic, readonly, strong) RACCommand *signoutCommand;
  14. - (instancetype)initWithTitle:(NSString *)title;
  15. @end
  16. NS_ASSUME_NONNULL_END