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.

35 lines
970 B
C#

using DSWeb.MvcShipping.Models.MsOpSeae;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.Dispatch.Models
{
public class RespGetFee : RespCommon
{
public List<ChFeeModel> Data { get; set; }
}
public class ChFeeModel
{
public ChFeeModel()
{
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; }
}
}