StudentRelateCourseView.cs 836 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.Students
  6. {
  7. public class StudentRelateCourseView
  8. {
  9. public StudentRelateCourseView()
  10. {
  11. StudentRelateSchedulingClassViewList = new List<StudentRelateSchedulingClassView>();
  12. }
  13. public Guid? UserID { get; set; }
  14. public string LoginID { get; set; }
  15. public Guid? ClassmajorID { get; set; }
  16. public Guid? SchoolyearID { get; set; }
  17. public Guid? CoursematerialID { get; set; }
  18. public int? TeacheModeID { get; set; }
  19. public int? OptionalCourseTypeID { get; set; }
  20. public int? HandleModeID { get; set; }
  21. public IEnumerable<StudentRelateSchedulingClassView> StudentRelateSchedulingClassViewList { get; set; }
  22. }
  23. }