26 lines
816 B
C#
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; }
|
|
}
|
|
} |