This commit is contained in:
2022-07-11 22:12:19 +00:00
parent 74e4c2cc36
commit d404ae94eb
3 changed files with 34 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
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
}