SelectCourseConditionView.cs 577 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. using System.ComponentModel.DataAnnotations;
  7. namespace EMIS.ViewModel.SelectCourse
  8. {
  9. public class SelectCourseConditionView
  10. {
  11. [Required]
  12. [DisplayName("选修学年学期")]
  13. public Guid? Schoolyear { get; set; }
  14. [DisplayName("高年级可以选低年级的课程")]
  15. public bool CrossGrade { get; set; }
  16. [DisplayName("是否限制班级人数上限")]
  17. public bool IsNoLimit { get; set; }
  18. }
  19. }