Files
rmutr_report/Models/budget/expense.cs
kamonwan taengsuk 5441324de9
All checks were successful
continuous-integration/drone/push Build is passing
update
2023-10-21 21:09:37 +07:00

26 lines
816 B
C#

using System.Collections.Generic;
namespace rmutr_report.Models
{
public class expense
{
public int? topic_type { get; set; }
public string topic { get; set; }
public string text_1 { get; set; }
public string text_2 { get; set; }
public decimal? quantity_1 { get; set; }
public decimal? quantity_2 { get; set; }
public decimal? quantity_3 { get; set; }
public decimal? total_amount { get; set; }
public List<expense_detail> data { get; set; }
}
public class expense_detail
{
public string topic { get; set; }
public decimal? quantity_1 { get; set; }
public decimal? quantity_2 { get; set; }
public decimal? quantity_3 { get; set; }
public decimal? total_amount { get; set; }
}
}