This commit is contained in:
kamonwan taengsuk
2023-03-10 10:51:10 +07:00
parent 88d8933682
commit ecfe3a3377
2 changed files with 227 additions and 10 deletions

View File

@@ -14,7 +14,19 @@ namespace rmutr_report.Models
public string budget_year_3 { get; set; }
public string budget_year_4 { get; set; }
public string budget_year_5 { get; set; }
public List<summary_building_constructions> header_data { get; set; }
}
public class summary_building_constructions{
public int? color { get; set; }
public string list { get; set; }
public decimal? budget { get; set; }
public decimal? price_1 { get; set; }
public decimal? price_2 { get; set; }
public decimal? price_3 { get; set; }
public decimal? price_4 { get; set; }
public decimal? price_5 { get; set; }
public List<summary_building_construction_detail> data { get; set; }
}
public class summary_building_construction_detail