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 IdlehoursInfo { 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 Hours { get; set; } public string UOM { get; set; } public string ReceivedDateStr { get { return AsofTimeLocal.ToString(); } } } }