Files
rmutr_report/Models/budget/student_news_graduate_program.cs
kamonwan taengsuk 9253033d96 update
2023-01-27 15:05:49 +07:00

26 lines
918 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class student_news_graduate_program
{
public string academic_year_name_th { get; set; }
public string data_date { get; set; }
public List<student_news_graduate_program_detail> data { get; set; }
}
public class student_news_graduate_program_detail
{
public string faculty_academy_name_th { get; set; }
public decimal? ph_degree { get; set; }
public decimal? ph_master_degree { get; set; }
public decimal? master_degree { get; set; }
public decimal? sum_degree { get; set; }
public decimal? sum_percentage { get; set; }
public decimal? total1 { get; set; }
public decimal? total2 { get; set; }
public decimal? total3 { get; set; }
public decimal? total4 { get; set; }
public decimal? total5 { get; set; }
}
}