12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMISOnline.ViewModel.ExamView
- {
- public class ListPaperView
- {
- public decimal test_paper_id { get; set; }
- public string PaperName { get; set; }
- public decimal? paper_score { get; set; }
- public decimal? used_count { get; set; }
- public DateTime? created_date { get; set; }
- public string created_by { get; set; }
- public string is_dynamic { get; set; }
- public string isEnable { get; set; }
- }
- }
|