- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.SupervisionManage
- {
- public class SupervisionCollegeView
- {
- public Guid SupervisionCollegeID { get; set; }
- public Guid? CollegeID { get; set; }
- public string CollegeName { get; set; }
- public string CollegeNo { get; set; }
- public string Name { get; set; }
- }
- }
|