Files
rmutr_report/Models/budget/budget_progress_insurances.cs
kamonwan taengsuk e4dd5d42e7
All checks were successful
continuous-integration/drone/push Build is passing
bug fixed
2023-10-26 19:09:00 +07:00

20 lines
584 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class budget_progress_insurances
{
public string budget_year { get; set; }
public List<budget_progress_insurances_detail> data { get; set; }
}
public class budget_progress_insurances_detail
{
public string car_number { get; set; }
public decimal? amount { get; set; }
public decimal? car_act { get; set; }
public int? month { get; set; }
public string month_th { get; set; }
public decimal? total_amount { get; set; }
}
}