test run works
This commit is contained in:
@@ -33,8 +33,9 @@
|
||||
/// <summary>
|
||||
/// Table number
|
||||
/// </summary>
|
||||
public int TableNumber { get; set; }
|
||||
public string TableNumber { get; set; }
|
||||
|
||||
public string SpecialInstruction { get; set; }
|
||||
|
||||
public List<Gang> Gangs { get; set; } = new List<Gang>();
|
||||
|
||||
@@ -77,12 +78,22 @@
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
|
||||
public Dish(){}
|
||||
|
||||
public Dish(int number, string name)
|
||||
{
|
||||
Number = number;
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public DishModifications Modifications { get; set; } = new DishModifications();
|
||||
public string? Comment { get; set; }
|
||||
}
|
||||
|
||||
public class DishModifications
|
||||
{
|
||||
public List<string> Removed { get; set; } = new List<string>();
|
||||
public List<string> Added { get; set; } = new List<string>();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user