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/DSWeb/Areas/Dispatch/Models/MpFeeListViewModel.cs

18 lines
493 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.Dispatch.Models
{
public class MpFeeListViewModel
{
public string FEENAME { get; set; }
public decimal UNITPRICE { get; set; }
public decimal QUANTITY { get; set; }
public decimal AMOUNT { get; set; }
public string REMARK { get; set; }
public bool? CUSTDUI { get; set; }
public string CUSTDUI_STR { get; set; }
}
}