Files
rmutr_report/Models/budget/house_for_rent.cs
kamonwan taengsuk 4417115ce8 add report
2023-01-23 18:00:30 +07:00

22 lines
688 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; }
}
}