123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class CF_StudentEditColumnDescription
- {
- public CF_StudentEditColumnDescription()
- {
- this.CF_StudentRecordChangeHistory = new HashSet<CF_StudentRecordChangeHistory>();
- }
-
-
-
-
- public string TableName { get; set; }
-
-
-
- public string ColumnName { get; set; }
-
-
-
- public string DisplayPropertyName { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
-
- public virtual HashSet<CF_StudentRecordChangeHistory> CF_StudentRecordChangeHistory { get; set; }
- }
- }
|