using BBWYB.Common.Http; using SDKAdapter.OperationPlatform.Models; using SDKAdapter.PurchasePlatform.Models; namespace SDKAdapter.OperationPlatform.Client { /// /// 运营平台通用SDK /// public class OP_PlatformClient { protected RestApiService restApiService { get; private set; } public virtual AdapterEnums.PlatformType Platform { get; } public OP_PlatformClient(RestApiService restApiService) { this.restApiService = restApiService; } public virtual OP_ProductListResponse GetProductList(OP_SearchProductRequest searchProductRequest) { throw new NotImplementedException(); } public virtual OP_ProductSkuListResponse GetProductSkuList(OP_SearchProductSkuRequest searchProductSkuRequest) { throw new NotImplementedException(); } } }