PIbd-23_Bogdanov_D.S._Compu.../ComputerShopContracts/ViewModels/ReportComputerComponentViewModel.cs
2023-03-26 17:06:05 +04:00

16 lines
412 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.ViewModels
{
public class ReportComputerComponentViewModel
{
public string ComponentName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> Computers { get; set; } = new();
}
}