using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMISOnline.ViewModel.Student { public class CorseStudyScoreView { /// /// 学习进度 /// public decimal StudyRate { get; set; } /// /// 学习得分 /// public decimal studyScore { get; set; } /// /// 登陆得分 /// public decimal loginScore { get; set; } /// /// 作业得分 /// public decimal homeWorkScore { get; set; } /// /// 老师评分 /// public decimal TeacherScore { get; set; } /// /// 总成绩 /// public decimal TitleScore { get; set; } public Guid CoursematerialID { get; set; } public string CourseName { get; set; } } }