Files
rmutr_report/Models/budget/summary_strategic.cs
kamonwan taengsuk b262a42200 add field
2023-07-13 10:28:56 +07:00

20 lines
548 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class summary_strategic
{
public string budget_year { get; set; }
public List<summary_strategic_detail> data { get; set; }
}
public class summary_strategic_detail
{
public string list { get; set; }
public decimal? target_quantity { get; set; }
public decimal? kpi_quantity { get; set; }
public decimal? achievement_quantity { get; set; }
public decimal? strategy_quantity { get; set; }
}
}