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.

33 lines
917 B

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_QueryProductRequest searchProductRequest)
{
throw new NotImplementedException();
}
public virtual OP_ProductSkuListResponse GetProductSkuList(OP_QueryProductSkuRequest searchProductSkuRequest)
{
throw new NotImplementedException();
}
}
}