TeacherConflictView.cs 472 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.ExaminationManage
  6. {
  7. public class TeacherConflictView
  8. {
  9. public Guid UserID { get; set; }
  10. public string Name { get; set; }
  11. public Guid ExaminationPlanID { get; set; }
  12. public string ExaminationPlanName { get; set; }
  13. public TimeSpan? StartTime { get; set; }
  14. public TimeSpan? EndTime { get; set; }
  15. }
  16. }