This commit is contained in:
2022-07-11 20:58:50 +00:00
parent 33b564ad63
commit 4dd2df03cf
9 changed files with 233 additions and 63 deletions

View 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
}