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 ScoreDetail { get; set; } } }