namespace ConfectioneryContracts.ViewModels { public class ReportPastryComponentViewModel { public string PastryName { get; set; } = string.Empty; public int TotalCount { get; set; } public List> Components { get; set; } = new(); } }