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_DifferentDynamicReport
- /// </summary>
- public partial class CF_DifferentDynamicReport
- {
- public CF_DifferentDynamicReport()
- {
- this.CF_DifferentDynamicReportType = new HashSet<CF_DifferentDynamicReportType>();
- }
-
- /// <summary>
- /// ChangeReportID
- /// </summary>
- public System.Guid ChangeReportID { get; set; }
- /// <summary>
- /// Code
- /// </summary>
- public string Code { get; set; }
- /// <summary>
- /// Name
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// Url
- /// </summary>
- public string Url { get; set; }
-
- /// <summary>
- /// CF_DifferentDynamicReportType
- /// </summary>
- public virtual HashSet<CF_DifferentDynamicReportType> CF_DifferentDynamicReportType { get; set; }
- }
- }
|