You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DispatchWeb/Models/RespGetFee.cs

36 lines
984 B
C#

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<MsChFee> 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; }
}
}