StudentScoreImportView.cs 485 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.ScoreManage
  6. {
  7. public class StudentScoreImportView
  8. {
  9. public Guid UserID { get; set; }
  10. public string LoginID { get; set; }
  11. public string UserName { get; set; }
  12. public int? ExamsCategoryID { get; set; }
  13. public string ExamsCategoryName { get; set; }
  14. public Dictionary<int?, decimal?> ScoreDetail { get; set; }
  15. }
  16. }