1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ScoreManage
- {
- public class StudentScoreImportView
- {
- public Guid UserID { get; set; }
- public string LoginID { get; set; }
- public string UserName { get; set; }
- public int? ExamsCategoryID { get; set; }
- public string ExamsCategoryName { get; set; }
- public Dictionary<int?, decimal?> ScoreDetail { get; set; }
- }
- }
|