This commit is contained in:
26
Models/budget/expense.cs
Normal file
26
Models/budget/expense.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user