Files
rmutr_report/Models/budget/kpi.cs
kamonwan taengsuk 23c2e53d08 add export excel
2023-02-07 17:06:15 +07:00

34 lines
869 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class kpi
{
public string academic_year { get; set; }
public List<kpi_data_detail> header_data { get; set; }
}
public class kpi_data_detail
{
public string header_1 { get; set; }
public string header_2 { get; set; }
public string indicator_type_name_th { get; set; }
public List<kpi_data_details> data { get; set; }
}
public class kpi_data_details
{
//public int? row { get; set; }
public string name { get; set; }
public string unit { get; set; }
public decimal? value { get; set; }
public string responsible_person { get; set; }
public string responsible_work { get; set; }
public string collector { get; set; }
}
}