StudentStatisticsDataView.cs 581 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EMIS.ViewModel.Report
  7. {
  8. public class StudentStatisticsDataView
  9. {
  10. public int? classNo { get; set; }
  11. public string className { get; set; }
  12. public int? year { get; set; }
  13. public string StandardsName { get; set; }
  14. public string collegeName { get; set; }
  15. public string schoolCode { get; set; }
  16. public string unicersityName { get; set; }
  17. public int? StudentCount { get; set; }
  18. }
  19. }