DeliveryWRRspModel.cs 537 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Model.Delivery
  6. {
  7. public class DeliveryWRRspModel
  8. {
  9. public DeliveryWRRspModel()
  10. {
  11. GoodsDeliveryPriceList = new List<GoodsDryPriceModel>();
  12. TradeWRPositionList = new List<TradeWRPositionModel>();
  13. }
  14. public List<GoodsDryPriceModel> GoodsDeliveryPriceList { get; set; }
  15. public List<TradeWRPositionModel> TradeWRPositionList { get; set; }
  16. }
  17. }