RQSettingViewModel.h 670 B

123456789101112131415161718192021222324252627
  1. //
  2. // RQSettingViewModel.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/5/5.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQCommonViewModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQSettingItemModel : RQBaseModel
  11. @property (nonatomic, readonly, copy) NSString *title;
  12. @property (nonatomic, readonly, copy) NSString *icon;
  13. + (instancetype)itemModelWithTitle:(NSString *)title icon:(NSString *)icon;
  14. @end
  15. @interface RQSettingViewModel : RQCommonViewModel
  16. /// 登出的命令
  17. @property (nonatomic, readonly, strong) RACCommand *logoutCommand;
  18. /// 登出回调
  19. @property (nonatomic, readonly, strong) RACSubject *logoutSubject;
  20. @end
  21. NS_ASSUME_NONNULL_END