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