22 lines
619 B
C#
22 lines
619 B
C#
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; }
|
|
}
|
|
} |