Files
rmutr_report/Models/RoReport/consultant_compensation.cs
kamonwan taengsuk 3a2f956d02
All checks were successful
continuous-integration/drone/push Build is passing
update
2023-11-22 19:11:13 +07:00

22 lines
658 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models.RoThree
{
public class consultant_compensation
{
public int? topic_type { get; set; } //1 2 3 4 5 6
public string topic_name { get; set; }
public decimal? total_amount { get; set; }
public List<consultant_compensation_detail> data { get; set; }
}
public class consultant_compensation_detail
{
public string list { get; set; }
public decimal? quantity_day { get; set; }
public decimal? quantity_person { get; set; }
public decimal? rate { get; set; }
public decimal? total_amount { get; set; }
}
}