using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UpdateDataTool.Models { class Organization : TrackableEntity { public string Name { get; set; } public string Description { get; set; } public AdminInfo CreateAdmin { get; set; } public CountryInfo Country { get; set; } public ProvinceInfo Province { get; set; } public CityInfo City { get; set; } public ICollection DiagnosisPackages { get; private set; } public ICollection Terminals { get; private set; } public virtual ICollection Owners { get; private set; } public int MaxWorkOrderNumber { get; set; } } }