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