26 lines
815 B
C#
26 lines
815 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models.Hrregister
|
|
{
|
|
public class hr_attend
|
|
{
|
|
public string year_name_th { get; set; }
|
|
public string budget_year_name_th { get; set; }
|
|
public string month_name_th { get; set; }
|
|
public List<hr_attend_detail> data { get; set; }
|
|
}
|
|
|
|
public class hr_attend_detail
|
|
{
|
|
public string display_name_th { get; set; }
|
|
public string agency_name_th { get; set; }
|
|
public string rate_number { get; set; }
|
|
public string directive_number { get; set; }
|
|
public string attend_date { get; set; }
|
|
public string retire_date { get; set; }
|
|
public string signing_date { get; set; }
|
|
public string attend_by { get; set; }
|
|
public string cause { get; set; }
|
|
|
|
}
|
|
} |