using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.Students { public class StudentRelateCourseView { public StudentRelateCourseView() { StudentRelateSchedulingClassViewList = new List(); } 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 StudentRelateSchedulingClassViewList { get; set; } } }