using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.EducationSchedule { public class StudentAndCourseForExcelView { public Guid? UserID { get; set; } public string LoginID { get; set; } public string UserName { get; set; } public Guid? CollegeID { get; set; } public string CollegeName { get; set; } public Guid? ClassmajorID { get; set; } public string ClassmajorName { get; set; } public Guid? CourseID { get; set; } public string CourseName { get; set; } } }