1234567891011121314151617181920212223242526272829303132333435 |
- //------------------------------------------------------------------------------
- // <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 EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// EM_CourseChapter_Video
- /// </summary>
- public partial class EM_CourseChapter_Video
- {
- /// <summary>
- /// CourseVideoID
- /// </summary>
- public System.Guid CourseVideoID { get; set; }
- /// <summary>
- /// CourseChapterID
- /// </summary>
- public System.Guid CourseChapterID { get; set; }
-
- /// <summary>
- /// EM_CourseVideo
- /// </summary>
- public virtual EM_CourseVideo EM_CourseVideo { get; set; }
- }
- }
|