using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;

namespace EMIS.ViewModel.SelectCourse
{
    public class SelectCourseConditionView
    {
        [Required]
        [DisplayName("选修学年学期")]
        public Guid? Schoolyear { get; set; }
        [DisplayName("高年级可以选低年级的课程")]
        public bool CrossGrade { get; set; }
        [DisplayName("是否限制班级人数上限")]
        public bool IsNoLimit { get; set; }
    }
}