TBDM_Prov.cs 509 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TBDM_Prov
  7. {
  8. public TBDM_Prov()
  9. {
  10. TBDM_Cities = new HashSet<TBDM_City>();
  11. }
  12. public string C_Code { get; set; }
  13. public string C_Name { get; set; }
  14. public int? I_Sort { get; set; }
  15. public string C_Status { get; set; }
  16. public virtual ICollection<TBDM_City> TBDM_Cities { get; set; }
  17. }
  18. }