Files
rmutr_report/Models/RoReport/summary_income_cooperative.cs
kamonwan taengsuk e30767101c
All checks were successful
continuous-integration/drone/push Build is passing
edit type
2023-10-04 14:45:08 +07:00

28 lines
1.0 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models.RoThree
{
public class summary_income_cooperative
{
public string budget_year { get; set; }
public string date_range { get; set; }
public string faculty_college { get; set; }
public string area { get; set; }
public List<summary_income_cooperative_detail> data { get; set; }
public string maker { get; set; }
public string position_maker { get; set; }
public string maker_date { get; set; }
}
public class summary_income_cooperative_detail
{
public int? topic_type { get; set; }
public string topic { get; set; }
public double? revenue_estimates { get; set; }
public double? deduct_expenses_percent60 { get; set; }
public double? deduct_expenses_percent10 { get; set; }
public double? balance { get; set; }
public double? deduct_tuition_fees { get; set; }
public double? balance_university { get; set; }
}
}