This commit is contained in:
20
Models/RoReport/land_rent.cs
Normal file
20
Models/RoReport/land_rent.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models.RoThree
|
||||
{
|
||||
public class land_rent
|
||||
{
|
||||
public string budget_year { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
public List<land_rent_data_datail> data { get; set; }
|
||||
}
|
||||
|
||||
public class land_rent_data_datail
|
||||
{
|
||||
public string list { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public string unit { get; set; }
|
||||
public decimal? unit_price { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user