1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //------------------------------------------------------------------------------
- // <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_CourseStudyStatus
- /// </summary>
- public partial class EM_CourseStudyStatus
- {
- /// <summary>
- /// CourseStudyStatusID
- /// </summary>
- public System.Guid CourseStudyStatusID { get; set; }
- /// <summary>
- /// UserID
- /// </summary>
- public System.Guid UserID { get; set; }
- /// <summary>
- /// CoursematerialID
- /// </summary>
- public Nullable<System.Guid> CoursematerialID { get; set; }
- /// <summary>
- /// ContinuousTime
- /// </summary>
- public Nullable<int> ContinuousTime { get; set; }
- /// <summary>
- /// LastVideoTypeID
- /// </summary>
- public Nullable<int> LastVideoTypeID { get; set; }
- /// <summary>
- /// LastCourseVideoID
- /// </summary>
- public Nullable<System.Guid> LastCourseVideoID { get; set; }
- /// <summary>
- /// LastCourseVideoLength
- /// </summary>
- public Nullable<int> LastCourseVideoLength { get; set; }
- /// <summary>
- /// LastOuterVideoUrl
- /// </summary>
- public string LastOuterVideoUrl { get; set; }
-
- /// <summary>
- /// EM_CourseVideo
- /// </summary>
- public virtual EM_CourseVideo EM_CourseVideo { get; set; }
- }
- }
|