16 lines
463 B
16 lines
463 B
|
4 years ago
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Text;
|
||
|
|
|
||
|
|
namespace BBWY.Server.Model.Dto
|
||
|
|
{
|
||
|
|
public class InputPurchaseSchemeProductRequest
|
||
|
|
{
|
||
|
|
public string ProductId { get; set; }
|
||
|
|
public string SkuId { get; set; }
|
||
|
|
public string PurchaseProductId { get; set; }
|
||
|
|
public string PurchaseUrl { get; set; }
|
||
|
|
public IList<InputPurchaseSchemeProductSkuRequest> PurchaseSchemeProductSkuList { get; set; }
|
||
|
|
}
|
||
|
|
}
|