using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Model.Delivery { public class DeliveryWRRspModel { public DeliveryWRRspModel() { GoodsDeliveryPriceList = new List(); TradeWRPositionList = new List(); } public List GoodsDeliveryPriceList { get; set; } public List TradeWRPositionList { get; set; } } }