using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.ScoreManage { public class ProjectScoreGenerateScoreView { public Guid ExaminationScoreID { get; set; } public Guid? ExaminationProjectID { get; set; } public Guid? UserID { get; set; } public int? ExaminationSubjectID { get; set; } public decimal? Score { get; set; } public bool? IsResit { get; set; } public DateTime? Expire { get; set; } public DateTime? BatchStartDate { get; set; } public Guid? ExaminationBatchProjectID { get; set; } public Guid? SchoolYearID { get; set; } } }