Files
rmutr_report/Models/budget/student_news.cs
kamonwan taengsuk fcc4f79ed1 bug fixed
2023-01-26 08:40:48 +07:00

22 lines
723 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class student_news_faculty
{
public string academic_year_name_th { get; set; }
public string curriculum_name_th { get; set; }
public string data_date { get; set; }
public List<student_news_faculty_detail> data { get; set; }
//public string faculty_academy_name_th { get; set; }
}
public class student_news_faculty_detail
{
public string faculty_academy_name_th { get; set; }
public decimal? bachelors_degree { get; set; }
public decimal? sum_percentage { get; set; }
public decimal? total1 { get; set; }
public decimal? total2 { get; set; }
}
}