123456789101112131415161718192021222324252627 |
- //
- // RQSettingViewModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/5/5.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQSettingItemModel : RQBaseModel
- @property (nonatomic, readonly, copy) NSString *title;
- @property (nonatomic, readonly, copy) NSString *icon;
- + (instancetype)itemModelWithTitle:(NSString *)title icon:(NSString *)icon;
- @end
- @interface RQSettingViewModel : RQCommonViewModel
- /// 登出的命令
- @property (nonatomic, readonly, strong) RACCommand *logoutCommand;
- /// 登出回调
- @property (nonatomic, readonly, strong) RACSubject *logoutSubject;
- @end
- NS_ASSUME_NONNULL_END
|