using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.ScoreManage { public class ScoreFormulaDropdownView { public Guid ScoreFormulaID { get; set; } public string Name { get; set; } public List ScoreFormulaDetail { get; set; } } public class ScoreFormulaDropdownDetailView { public Guid ScoreFormulaDetailID { get; set; } public Guid? ScoreFormulaID { get; set; } public int? ScoreType { get; set; } public int? Percentage { get; set; } public bool? IsRequirePass { get; set; } public decimal? PassScore { get; set; } public string PassScoreStr { get; set; } } }