namespace SushiBarContracts.ViewModels { public class ReportSushiIngredientViewModel { public string SushiName { get; set; } = string.Empty; public int TotalCount { get; set; } public List<(string Ingredient, int Count)> Ingredients { get; set; } = new(); } }