1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.Students
- {
- public class StudentRelateCourseView
- {
- public StudentRelateCourseView()
- {
- StudentRelateSchedulingClassViewList = new List<StudentRelateSchedulingClassView>();
- }
- public Guid? UserID { get; set; }
- public string LoginID { get; set; }
- public Guid? ClassmajorID { get; set; }
- public Guid? SchoolyearID { get; set; }
- public Guid? CoursematerialID { get; set; }
- public int? TeacheModeID { get; set; }
- public int? OptionalCourseTypeID { get; set; }
- public int? HandleModeID { get; set; }
- public IEnumerable<StudentRelateSchedulingClassView> StudentRelateSchedulingClassViewList { get; set; }
- }
- }
|