This commit is contained in:
19
Models/budget/budget_progress_insurances.cs
Normal file
19
Models/budget/budget_progress_insurances.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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 string month { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user