using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMISOnline.ViewModel.Educational { public class EducationMissionClassView { public string Name { get; set; } public string CoursematerialName { get; set; } public Guid EducationMissionClassID { get; set; } public Guid? CoursematerialID { get; set; } public string SchoolyearName { get; set; } public Guid SchoolyearID { get; set; } } }