20 lines
555 B
C#
20 lines
555 B
C#
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; }
|
|
}
|
|
} |