24 lines
752 B
C#
24 lines
752 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class operating_expenses
|
|
{
|
|
public string budget_year { get; set; }
|
|
public string plan { get; set; }
|
|
public string product { get; set; }
|
|
public string agency { get; set; }
|
|
public string area { get; set; }
|
|
public string request_year { get; set; }
|
|
public decimal? total_amount { get; set; }
|
|
public List<operating_expenses_detail> data { get; set; }
|
|
}
|
|
|
|
public class operating_expenses_detail
|
|
{
|
|
public string no { get; set; }
|
|
public string expenditure_budget { get; set; }
|
|
public decimal? amount { get; set; }
|
|
public string clarification_summary { get; set; }
|
|
}
|
|
} |