This commit is contained in:
22
Models/budget/national_budget_list.cs
Normal file
22
Models/budget/national_budget_list.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class national_budget_list
|
||||
{
|
||||
public int? report_type { get; set; }
|
||||
public string type { get; set; }
|
||||
public string budget_year { get; set; }
|
||||
public List<national_budget_list_detail> data { get; set; }
|
||||
}
|
||||
|
||||
public class national_budget_list_detail
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? quantity { get; set; }
|
||||
public string unit { get; set; }
|
||||
public decimal? unit_price { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user