PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/ViewModels/ReportComputerComponentViewModel.cs

16 lines
424 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.ViewModels
{
public class ReportComputerComponentViewModel
{
public string ComputerName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<(string Component, int Count)> Components { get; set; } = new();
}
}