25 lines
781 B
C#
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; }
|
|
}
|
|
} |