RQProfileViewModel.h 442 B

123456789101112131415161718192021
  1. //
  2. // RQProfileViewModel.h
  3. // RQCommon
  4. //
  5. // Created by 张嵘 on 2018/11/21.
  6. // Copyright © 2018 张嵘. All rights reserved.
  7. //
  8. #import "RQCommonViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQProfileViewModel : RQCommonViewModel
  11. /// 登出的命令
  12. @property (nonatomic, readonly, strong) RACCommand *logoutCommand;
  13. /// 登出回调
  14. @property (nonatomic, readonly, strong) RACSubject *logoutSubject;
  15. @end
  16. NS_ASSUME_NONNULL_END