Files
ravenqbi/AyaNovaQBI/UnitMeterReading.cs
2022-07-11 22:12:19 +00:00

30 lines
635 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyaNovaQBI
{
public class UnitMeterReading
{
public long Id { get; set; }
public uint Concurrency { get; set; }
public string Notes { get; set; }
public long Meter { get; set; }
public DateTime MeterDate { get; set; }
public long UnitId { get; set; }
public long? WorkOrderItemUnitId { get; set; }
public string UnitViz { get; set; }
public string WorkOrderViz { get; set; }
}//eoc
}