using System; using System.Collections.Generic; #nullable disable namespace Ropin.Inspection.Model.Entities { public partial class TBDM_City { public TBDM_City() { TBDM_Areas = new HashSet(); } public string C_Code { get; set; } public string C_ProvCode { get; set; } public string C_Name { get; set; } public int? I_Sort { get; set; } public string C_Status { get; set; } public virtual TBDM_Prov C_ProvCodeNavigation { get; set; } public virtual ICollection TBDM_Areas { get; set; } } }