Files
rmutr_report/Models/budget/target_budget_project.cs
kamonwan taengsuk 7132b7c4ed
All checks were successful
continuous-integration/drone/push Build is passing
add report and SwaggerOperation
2023-08-15 17:53:36 +07:00

27 lines
898 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class target_budget_project
{
public string budget_project_name_th { get; set; }
public string plan_year_1 { get; set; }
public string plan_year_2 { get; set; }
public string plan_year_3 { get; set; }
public string plan_year_4 { get; set; }
public string plan_year_5 { get; set; }
public List<target_budget_project_detail> data { get; set; }
}
public class target_budget_project_detail
{
public string indicators_money_source { get; set; }
public string unit { get; set; }
public string plan_value_1 { get; set; }
public string plan_value_2 { get; set; }
public string plan_value_3 { get; set; }
public string plan_value_4 { get; set; }
public string plan_value_5 { get; set; }
}
}