This commit is contained in:
22
Models/RoReport/contributions.cs
Normal file
22
Models/RoReport/contributions.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user