You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
917 B

2 years ago
using BBWYB.Common.Http;
using SDKAdapter.OperationPlatform.Models;
using SDKAdapter.PurchasePlatform.Models;
namespace SDKAdapter.OperationPlatform.Client
{
/// <summary>
/// 运营平台通用SDK
/// </summary>
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();
}
}
}