ListPaperView.cs 556 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMISOnline.ViewModel.ExamView
  6. {
  7. public class ListPaperView
  8. {
  9. public decimal test_paper_id { get; set; }
  10. public string PaperName { get; set; }
  11. public decimal? paper_score { get; set; }
  12. public decimal? used_count { get; set; }
  13. public DateTime? created_date { get; set; }
  14. public string created_by { get; set; }
  15. public string is_dynamic { get; set; }
  16. public string isEnable { get; set; }
  17. }
  18. }