123456789101112131415161718 |
- //
- // RQViewModelServices.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/13.
- // Copyright © 2018 张嵘. All rights reserved.
- // 视图模型服务层测协议 (导航栏操作的服务层 + 网络的服务层 )
- #import <Foundation/Foundation.h>
- #import "RQNavigationProtocol.h"
- #import "RQHTTPService.h"
- @protocol RQViewModelServices <NSObject, RQNavigationProtocol>
- /// A reference to MHHTTPService instance.
- /// 全局通过这个Client来请求数据,处理用户信息
- @property (nonatomic, readonly, strong) RQHTTPService *client;
- @end
|