1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ScoreManage
- {
- public class ExaminationExemptionCoursematerialView
- {
-
-
-
- public Guid CoursematerialID { get; set; }
- public string CourseCode { get; set; }
- public string CourseName { get; set; }
- }
- }
|