move file

This commit is contained in:
kamonwan taengsuk
2022-11-03 14:05:34 +07:00
parent 52b3f8c922
commit c2bd91542e
9 changed files with 28 additions and 12 deletions

34
Models/budget/kpi.cs Normal file
View File

@@ -0,0 +1,34 @@
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 header_3 { 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; }
}
}