22 lines
578 B
C#
22 lines
578 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class service_fee
|
|
{
|
|
public decimal? total_amount_1 { get; set; }
|
|
public decimal? total_amount_2 { get; set; }
|
|
public decimal? total_amount_all { get; set; }
|
|
public List<service_fee_detail> data { get; set; }
|
|
|
|
}
|
|
|
|
public class service_fee_detail
|
|
{
|
|
public string agency { get; set; }
|
|
public string list { get; set; }
|
|
public decimal? wage_rate_science { get; set; }
|
|
public decimal? wage_rate_social { get; set; }
|
|
|
|
}
|
|
} |