RQProfileLogouItemViewModel.h 412 B

12345678910111213141516171819
  1. //
  2. // RQProfileLogouItemViewModel.h
  3. // JSJP
  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, readwrite, strong) RACCommand *logoutCommand;
  12. /// 登出回调
  13. @property (nonatomic, readwrite, strong) RACSubject *logoutSubject;
  14. @end
  15. NS_ASSUME_NONNULL_END