Files
rmutr_report/Models/budget/house_for_rent.cs
kamonwan taengsuk d3700f9327
All checks were successful
continuous-integration/drone/push Build is passing
fixed ง1
2023-10-19 12:46:50 +07:00

23 lines
746 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class house_for_rent
{
public string budget_year { get; set; }
public string plan { get; set; }
public string product { get; set; }
public string salary_date { get; set; }
public List<house_for_rent_detail> data { get; set; }
}
public class house_for_rent_detail{
public string no { get; set; }
public string display_name_th { get; set; }
public string level { get; set; }
public decimal? salary_rate { get; set; }
public decimal? per_month { get; set; }
public decimal? per_year { get; set; }
public decimal? actual_disbursement { get; set; }
}
}