Files
rmutr_report/Models/RoReport/service_fee_ro_three.cs
kamonwan taengsuk 3a2f956d02
All checks were successful
continuous-integration/drone/push Build is passing
update
2023-11-22 19:11:13 +07:00

25 lines
781 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models.RoThree
{
public class service_fee_ro_three
{
public string budget_year { get; set; }
public string date_range { get; set; }
public string product { get; set; }
public string agency_name_th { get; set; }
public string sector { get; set; }
public List<service_fee_ro_three_data_datail> data { get; set; }
}
public class service_fee_ro_three_data_datail
{
public string service_fee_type { get; set; }
public string list { get; set; }
public decimal? area { get; set; }
public decimal? count_person { get; set; }
public decimal? wage_month { get; set; }
public decimal? wage_year { get; set; }
}
}