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

View File

@@ -0,0 +1,38 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class summary_of_equipment
{
public string academic_year_name_th { get; set; }
public string header_name { get; set; }
public string agency_name_th { get; set; }
public string location { get; set; }
public string academic_year { get; set; }
public string budget_year_1 { get; set; }
public string budget_year_2 { get; set; }
public string budget_year_3 { get; set; }
public string budget_year_4 { get; set; }
public string budget_year_5 { get; set; }
public List<summary_of_equipment_detail> data { get; set; }
}
public class summary_of_equipment_detail
{
public int? no { get; set; }
public string list { get; set; }
public string type_1 { get; set; }
public string type_2 { get; set; }
public string type_3 { get; set; }
public string unit { get; set; }
public int? quantity { get; set; }
public decimal? unit_price { 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 string description { get; set; }
}
}