123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// CF_StudentEditColumnDescription
- /// </summary>
- public partial class CF_StudentEditColumnDescription
- {
- public CF_StudentEditColumnDescription()
- {
- this.CF_StudentRecordChangeHistory = new HashSet<CF_StudentRecordChangeHistory>();
- }
-
- /// <summary>
- /// TableName
- /// </summary>
- public string TableName { get; set; }
- /// <summary>
- /// ColumnName
- /// </summary>
- public string ColumnName { get; set; }
- /// <summary>
- /// DisplayPropertyName
- /// </summary>
- public string DisplayPropertyName { get; set; }
- /// <summary>
- /// Description
- /// </summary>
- public string Description { get; set; }
-
- /// <summary>
- /// CF_StudentRecordChangeHistory
- /// </summary>
- public virtual HashSet<CF_StudentRecordChangeHistory> CF_StudentRecordChangeHistory { get; set; }
- }
- }
|