initial version with inspection edition
This commit is contained in:
30
IronIntelContractorBusiness/Machines/IdlehoursInfo.cs
Normal file
30
IronIntelContractorBusiness/Machines/IdlehoursInfo.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user