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.
22 lines
769 B
22 lines
769 B
using BBWYB.Server.Model.Db;
|
|
|
|
namespace BBWYB.Server.Model.Dto
|
|
{
|
|
public class MergePurchaserResponse : Purchaser
|
|
{
|
|
public MergePurchaserResponse()
|
|
{
|
|
MergePurchaseSchemeProductSkuList = new List<MergePurchaseSchemeProductSkuResponse>();
|
|
CategoryList = new List<PurchaserExtendedInfoResponse>();
|
|
TagList = new List<PurchaserExtendedInfoResponse>();
|
|
}
|
|
public List<MergePurchaseSchemeProductSkuResponse> MergePurchaseSchemeProductSkuList { get; set; }
|
|
|
|
public IList<PurchaserExtendedInfoResponse> CategoryList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 自定义标签集合
|
|
/// </summary>
|
|
public IList<PurchaserExtendedInfoResponse> TagList { get; set; }
|
|
}
|
|
}
|
|
|