| 123456789101112131415161718 |
- 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<GoodsDryPriceModel>();
- TradeWRPositionList = new List<TradeWRPositionModel>();
- }
- public List<GoodsDryPriceModel> GoodsDeliveryPriceList { get; set; }
- public List<TradeWRPositionModel> TradeWRPositionList { get; set; }
- }
- }
|