using System; using System.Collections.Generic; using System.Linq; using System.Web; using HcUtility.Core; using Newtonsoft.Json; namespace DSWeb.Areas.RptMng.Models { [JsonObject] public class MsRptBulkTrans : ModelObjectBillHead { public string TruckNo { get; set; } public string ExpDate { get; set; } public decimal RealMil { get; set; } public decimal OverLoadMil { get; set; } public decimal NoLoadMil { get; set; } public decimal LoadCount { get; set; } public decimal UnLoadCount { get; set; } public decimal Weight { get; set; } public decimal TonMil { get; set; } public decimal RatedFuel { get; set; } public decimal FuelQty { get; set; } public decimal TransTotal { get; set; } public string GId { get; set; } } }