32 lines
852 B
C#

using Foresight.Fleet.Services.Asset;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IronIntel.Contractor.Machines
{
public class FuelusedInfo
{
public long AssetID { get; set; }
public string DataSource { get; set; }
public string SubSource { get; set; }
public string DataSourceName { get; set; }
public DateTime AsofTime { get; set; }
public DateTime AsofTimeLocal { get; set; }
public bool IsPrimary { get; set; }
public double Amount { get; set; }
public double Percent { get; set; }
public string UOM { get; set; }
public string ReceivedDateStr
{
get
{
return AsofTimeLocal.ToString();
}
}
}
}