CF_StudentEditColumnDescription.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace EMIS.Entities
  10. {
  11. #pragma warning disable 1573
  12. using System;
  13. using System.Collections.Generic;
  14. /// <summary>
  15. /// CF_StudentEditColumnDescription
  16. /// </summary>
  17. public partial class CF_StudentEditColumnDescription
  18. {
  19. public CF_StudentEditColumnDescription()
  20. {
  21. this.CF_StudentRecordChangeHistory = new HashSet<CF_StudentRecordChangeHistory>();
  22. }
  23. /// <summary>
  24. /// TableName
  25. /// </summary>
  26. public string TableName { get; set; }
  27. /// <summary>
  28. /// ColumnName
  29. /// </summary>
  30. public string ColumnName { get; set; }
  31. /// <summary>
  32. /// DisplayPropertyName
  33. /// </summary>
  34. public string DisplayPropertyName { get; set; }
  35. /// <summary>
  36. /// Description
  37. /// </summary>
  38. public string Description { get; set; }
  39. /// <summary>
  40. /// CF_StudentRecordChangeHistory
  41. /// </summary>
  42. public virtual HashSet<CF_StudentRecordChangeHistory> CF_StudentRecordChangeHistory { get; set; }
  43. }
  44. }