1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMISOnline.ViewModel.Educational
- {
- public class CourseChapterView
- {
- public Guid CourseChapterID { get; set; }
- public Guid? CoursematerialID { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public int? OrderID { get; set; }
-
-
-
- public Guid? ParentCourseChapterID { get; set; }
-
-
-
- public int? VideoTypeID { get; set; }
-
-
-
- public string OuterVideoUrl { get; set; }
-
-
-
- public DateTime? CreateTime { get; set; }
- public Guid? CreateUserID { get; set; }
- public string CreateUserName { get; set; }
- }
- public class ChaperTree
- {
- public string parentId { get; set; }
- public int? orderId { get; set; }
- public int? videoTypeID { get; set; }
- public string outerVideoUrl { get; set; }
- }
- public class CourseVideoView
- {
-
-
-
- public System.Guid CourseVideoID { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string UploadUrl { get; set; }
-
-
-
- public string PlayUrl { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
- public System.Guid CourseChapterID { get; set; }
- }
- public class CourseVideoSerializer
- {
- public Guid CourseVideoID { get; set; }
- }
- }
|