using System.Collections.Generic; namespace Myshipping.Application.Service.ExpressDelivery.Dto.SF { public class ReceiveSfFeeDto { public string content { get; set; } } public class ContentModel { public string orderNo { get; set; } public string waybillNo { get; set; } public string meterageWeightQty { get; set; } public List feeList { get; set; } } public class Fee { public decimal feeAmt { get; set; } public string settlementTypeCode { get; set; } public string feeTypeCode { get; set; } public string customerAcctCode { get; set; } public string waybillNo { get; set; } } }