123456789101112131415161718 |
- //
- // TDSRegionNetClient.h
- // TDSCommon
- //
- // Created by TapTap-David on 2020/11/18.
- //
- #import <Foundation/Foundation.h>
- #import <TapCommonSDK/TDSNetExecutor.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface TDSRegionNetClient : NSObject
- + (instancetype)sharedInstance;
- - (TDSNetExecutor *)doWithRequest:(TDSNetRequestModel *)request;
- @end
- NS_ASSUME_NONNULL_END
|