using System; using System.Collections.Generic; using System.Linq; using System.Runtime; using System.Text; using System.Threading.Tasks; namespace Flyinsono.DBCopy.Tool.Entities { internal class Organizations { public string Id { get; set; } public DateTime CreateTime { get; set; } public DateTime UpdateTime { get; set; } public bool IsDeleted { get; set; } public string Name { get; set; } public string Description { get; set; } public AdminInfo CreateAdmin { get; set; } public CountryInfo Country { get; set; } public CountryInfo Province { get; set; } public CountryInfo City { get; set; } public ICollection DiagnosisPackages { get; set; } public ICollection Terminals { get; set; } public virtual ICollection Owners { get; set; } public int MaxWorkOrderNumber { get; set; } public ICollection ParentOrganizations { get; set; } public ICollection ChildOrganizations { get; set; } public string DefaultTemplateId { get; set; } public ICollection ReportTemplateIds { get; set; } } internal class CountryInfo { public string Description { get; set; } public string Id { get; set; } public string Name { get; set; } } }