1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ExaminationManage
- {
- public class TeacherConflictView
- {
- public Guid UserID { get; set; }
- public string Name { get; set; }
- public Guid ExaminationPlanID { get; set; }
- public string ExaminationPlanName { get; set; }
- public TimeSpan? StartTime { get; set; }
- public TimeSpan? EndTime { get; set; }
- }
- }
|