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

namespace EMIS.ViewModel.TeachingMaterial
{
    public class StudentDistributeGenerateView
    {
        public Guid? SpecialtyPlanID { get; set; }
        public Guid? TeachingMaterialPoolID { get; set; }
        public int? StudentCount { get; set; }
        public Guid? OldStudentDistributeID { get; set; }
    }
}