Files
rmutr_report/Models/HrDevelopment/academic_position_leave.cs
kamonwan taengsuk 45037a9a80 add reports
2022-11-15 13:35:24 +07:00

29 lines
1.0 KiB
C#

using System.Collections.Generic;
namespace rmutr_report.Models.HrDevelopment
{
public class academic_position_leave
{
public string year { get; set; }
public List<academic_position_leave_detail> data { get; set; }
}
public class academic_position_leave_detail
{
public string display_name_th { get; set; }
public string position_name { get; set; }
public string faculty_name { get; set; }
public string research { get; set; }
public string treatise { get; set; }
public string increase_academic_knowledge { get; set; }
public string title { get; set; }
public string location { get; set; }
public string period { get; set; }
public string expenses { get; set; }
public string directive_go { get; set; }
public string directive_back { get; set; }
public string return_date { get; set; }
public string contract_number { get; set; }
public string note { get; set; }
}
}