36 lines
790 B
C#
36 lines
790 B
C#
using System.Collections.Generic;
|
|
|
|
namespace rmutr_report.Models
|
|
{
|
|
public class car_insurance{
|
|
public string budget_year { get; set; }
|
|
public string car_insurance_year { get; set; }
|
|
public decimal? total_amount_all { get; set; }
|
|
public List<area_group_headers> group_header { get; set; }
|
|
|
|
}
|
|
|
|
public class area_group_headers
|
|
{
|
|
public string area { get; set; }
|
|
|
|
public List<car_insurance_detail> data { get; set; }
|
|
|
|
}
|
|
|
|
public class car_insurance_detail
|
|
{
|
|
public string list { get; set; }
|
|
public List<car_insurance_detail2> data_detail { get; set; }
|
|
|
|
}
|
|
|
|
public class car_insurance_detail2
|
|
{
|
|
public string list { get; set; }
|
|
public string unit { get; set; }
|
|
public string pay_month { get; set; }
|
|
public decimal? amount { get; set; }
|
|
|
|
}
|
|
} |