using System; using System.Collections.Generic; #nullable disable namespace Ropin.Inspection.Model.Entities { public partial class TPNT_Type { public TPNT_Type() { TPNT_Stores = new HashSet(); } public Guid 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 TPNT_Stores { get; set; } } }