EM_CourseChapter_Video.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace EMISOnline.Entities
  10. {
  11. #pragma warning disable 1573
  12. using System;
  13. using System.Collections.Generic;
  14. /// <summary>
  15. /// EM_CourseChapter_Video
  16. /// </summary>
  17. public partial class EM_CourseChapter_Video
  18. {
  19. /// <summary>
  20. /// CourseVideoID
  21. /// </summary>
  22. public System.Guid CourseVideoID { get; set; }
  23. /// <summary>
  24. /// CourseChapterID
  25. /// </summary>
  26. public System.Guid CourseChapterID { get; set; }
  27. /// <summary>
  28. /// EM_CourseVideo
  29. /// </summary>
  30. public virtual EM_CourseVideo EM_CourseVideo { get; set; }
  31. }
  32. }