using System; using System.Collections.Generic; using AutoMapper; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.MvcShipping.Models.MsChFee { [JsonObject] public class MsInvFee { public string billno { get; set; } public string invoice_no { get; set; } public string invoice_date { get; set; } public List fee { get; set; } } [JsonObject] public class MsInvFeeDetail { public string fee_type { get; set; } public string count { get; set; } public string fee_rate { get; set; } public string fee_rate_c { get; set; } public string amount { get; set; } public string amount_c { get; set; } public string exchange_rate { get; set; } public string vat_fee { get; set; } public string vat_amount { get; set; } public string vat_amount_c { get; set; } public string vat_sum { get; set; } public string vat_sum_c { get; set; } } public class JsonMsInvFee { public System.Collections.Generic.List message { get; set; } public string status { get; set; } } // }