using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DispatchWeb.Models { public class RespGetFee { public bool Success { get; set; } public string Message { get; set; } public List Data { get; set; } } public class MsChFee { public MsChFee() { this.FeeName = string.Empty; this.Unit = string.Empty; this.UnitPrice = string.Empty; this.Quantity = string.Empty; this.Amount = string.Empty; this.Currency = string.Empty; this.ExChangerate = string.Empty; } public string FeeName { get; set; } public string Unit { get; set; } public string UnitPrice { get; set; } public string Quantity { get; set; } public string Amount { get; set; } public string Currency { get; set; } public string ExChangerate { get; set; } } }