31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.RoThree
|
|
{
|
|
public class house_rent_ro_three
|
|
{
|
|
public int? topic_type { get; set; } //1 2 3
|
|
public string topic_name { get; set; }
|
|
public string budget_year { get; set; }
|
|
public string product { get; set; }
|
|
public string agency_name_th { get; set; }
|
|
public string sector { get; set; }
|
|
public List<house_rent_ro_three_detail> data { get; set; }
|
|
}
|
|
|
|
public class house_rent_ro_three_detail
|
|
{
|
|
public string display_name_th { get; set; }
|
|
public string position { get; set; }
|
|
public string qualification { get; set; }
|
|
public decimal? salary_rate { get; set; }
|
|
public decimal? other_compensation { get; set; }
|
|
public decimal? rent_per_month { get; set; }
|
|
public decimal? rent_per_year { get; set; }
|
|
public decimal? book { get; set; }
|
|
public decimal? insurance { get; set; }
|
|
public decimal? fee { get; set; }
|
|
|
|
public string station { get; set; }
|
|
}
|
|
} |