This commit is contained in:
goblinrf 2024-05-13 23:49:19 +04:00
parent d33174b32e
commit 7d168ba8b1
2 changed files with 0 additions and 16 deletions

View File

@ -1,8 +0,0 @@
namespace DinerContracts.ViewModels
{
public class ShopSnackViewModel
{
public ShopViewModel Shop { get; set; } = new();
public Dictionary<int, SnackCount> ShopSnack { get; set; } = new();
}
}

View File

@ -1,8 +0,0 @@
namespace DinerContracts.ViewModels
{
public class SnackCount
{
public SnackViewModel Snack { get; set; }
public int Count { get; set; } = new();
}
}