Files
rmutr_report/Models/RoReport/summary_income_cooperative.cs
kamonwan taengsuk cbddecb9d5
All checks were successful
continuous-integration/drone/push Build is passing
bug fixed
2023-09-28 16:53:25 +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 decimal? revenue_estimates { get; set; }
public decimal? deduct_expenses_percent60 { get; set; }
public decimal? deduct_expenses_percent10 { get; set; }
public decimal? balance { get; set; }
public decimal? deduct_tuition_fees { get; set; }
public decimal? balance_university { get; set; }
}
}