update
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-11-06 17:19:58 +07:00
parent 4c9484d57e
commit ba2a5b966e
12 changed files with 176 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
using System.Collections.Generic;
namespace rmutr_report.Models.RoThree
{
public class contributions
{
public int? topic_type { get; set; } //1 2
public string topic_name { get; set; }
public decimal? total_amount { get; set; }
public List<contributions_detail> data { get; set; }
}
public class contributions_detail
{
public string position { get; set; }
public string qualification { get; set; }
public decimal? salary { get; set; }
public decimal? amount { get; set; }
public decimal? per_year { get; set; }
}
}