using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.ScoreManage { public class SpecialityScoreSummaryCoursematerialView { public string Title { get; set; } public Guid? CoursematerialID { get; set; } public string Tag { get; set; } public decimal? Credit { get; set; } public List ScoreList { get; set; } public List CreditList { get; set; } } }