update
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kamonwan taengsuk
2023-10-21 21:09:37 +07:00
parent e206bf0efe
commit 5441324de9
21 changed files with 201 additions and 6 deletions

26
Models/budget/expense.cs Normal file
View File

@@ -0,0 +1,26 @@
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; }
}
}