This commit is contained in:
25
Models/budget/meal_costs_outside.cs
Normal file
25
Models/budget/meal_costs_outside.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace rmutr_report.Models
|
||||
{
|
||||
public class meal_costs_outside
|
||||
{
|
||||
public int? topic_type { get; set; }
|
||||
public string topic { get; set; }
|
||||
public decimal? day { get; set; }
|
||||
public decimal? person { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
|
||||
public List<meal_costs_outside_detail>data { get; set; }
|
||||
}
|
||||
|
||||
public class meal_costs_outside_detail
|
||||
{
|
||||
public string topic { get; set; }
|
||||
public decimal? day { get; set; }
|
||||
public decimal? person { get; set; }
|
||||
public decimal? amount { get; set; }
|
||||
public decimal? total_amount { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user