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 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; } } }