10 lines
292 B
C#
10 lines
292 B
C#
namespace ConfectioneryContracts.ViewModels
|
|
{
|
|
public class ReportPastryComponentViewModel
|
|
{
|
|
public string PastryName { get; set; } = string.Empty;
|
|
public int TotalCount { get; set; }
|
|
public List<Tuple<string, int>> Components { get; set; } = new();
|
|
}
|
|
}
|