25 lines
814 B
C#
25 lines
814 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class total_budget
|
|
{
|
|
public decimal? government_budget { get; set; }
|
|
public decimal? income_budget { get; set; }
|
|
public List<total_budget_detail> data { get; set; }
|
|
}
|
|
|
|
public class total_budget_detail
|
|
{
|
|
public int? topic_type { get; set; }
|
|
public string row_no { get; set; }
|
|
public string budget_plan { get; set; }
|
|
public string budget_project { get; set; }
|
|
public string list { get; set; }
|
|
public decimal? budget_amount { get; set; }
|
|
public string start_date { get; set; }
|
|
public string end_date { get; set; }
|
|
public string responsible_agency { get; set; }
|
|
public string responsible_person { get; set; }
|
|
}
|
|
} |