using BBWYB.Common.Http;
using SDKAdapter.PurchasePlatform.Models;
namespace SDKAdapter.PurchasePlatform.Client
{
public class PP_PlatformClient
{
protected RestApiService restApiService { get; private set; }
public virtual AdapterEnums.PlatformType Platform { get; }
public PP_PlatformClient(RestApiService restApiService)
{
this.restApiService = restApiService;
}
///
/// 预览订单
///
///
///
///
public virtual PP_PreviewOrderResponse PreviewOrder(PP_PreviewOrderRequest request)
{
throw new NotImplementedException();
}
}
}