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 Tags { get; set; } = new List(); 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; } public string UnitLastMeterViz { get; set; }//for qbi //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 }