PIbd-23_Bogdanov_D.S._Compu.../ComputerShopContracts/ViewModels/ReportComputerComponentViewModel.cs
2023-04-04 14:30:46 +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 ComputerName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> Components { get; set; } = new();
}
}