This commit is contained in:
32
AyaNovaQBI/WorkOrderItemUnit.cs
Normal file
32
AyaNovaQBI/WorkOrderItemUnit.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace AyaNovaQBI
|
||||
{
|
||||
public class WorkOrderItemUnit
|
||||
{
|
||||
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
public string Notes { get; set; }
|
||||
public string Wiki { get; set; }
|
||||
public string CustomFields { get; set; }
|
||||
public List<string> Tags { get; set; } = new List<string>();
|
||||
|
||||
public long UnitId { get; set; }
|
||||
public string UnitViz { get; set; }
|
||||
public long WorkOrderItemId { get; set; }
|
||||
public string UnitModelNameViz { get; set; }
|
||||
public string UnitModelVendorViz { get; set; }
|
||||
public string UnitDescriptionViz { get; set; }
|
||||
public bool UnitMeteredViz { get; set; }
|
||||
|
||||
//PHYSICAL ADDRESS
|
||||
public string AddressViz { get; set; }
|
||||
public string CityViz { get; set; }
|
||||
public string RegionViz { get; set; }
|
||||
public string CountryViz { get; set; }
|
||||
public decimal? LatitudeViz { get; set; }
|
||||
public decimal? LongitudeViz { get; set; }
|
||||
|
||||
}//eoc
|
||||
}
|
||||
Reference in New Issue
Block a user