ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/ViewModels/ReportPastryComponentViewModel.cs

16 lines
409 B
C#
Raw Normal View History

2023-03-01 16:42:58 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryContracts.ViewModels
{
public class ReportPastryComponentViewModel
{
public string PastryName { get; set; } = string.Empty;
2023-03-01 16:42:58 +04:00
public int TotalCount { get; set; }
public List<Tuple<string, int>> Components { get; set; } = new();
2023-03-01 16:42:58 +04:00
}
}