Files
mesareportingservices/ReportingServices/ReportingObjects/EquipmentStateByDay.cs
Daniel Wathen f996dcfb36 First Commit
2022-11-30 13:15:01 -07:00

9 lines
196 B
C#

namespace ReportingServices.ReportingObjects
{
public class EquipmentStateByDay
{
public string StartTime { get; set; }
public string AvailablePct { get; set; }
}
}