SushiBarBase/SushiBar/SushiBarContracts/ViewModels/ReportProductComponentViewModel.cs

16 lines
427 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.ViewModels
{
public class ReportSushiComponentViewModel
{
public string ComponentName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> Sushis { get; set; } = new List<Tuple<string, int>>();
}
}