PIbd-23_Bogdanov_D.S._Compu.../ComputerShopContracts/ViewModels/ReportComputerComponentViewModel.cs

16 lines
412 B
C#
Raw Normal View History

2023-03-26 17:06:05 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopContracts.ViewModels
{
public class ReportComputerComponentViewModel
{
2023-04-04 14:30:46 +04:00
public string ComputerName { get; set; } = string.Empty;
2023-03-26 17:06:05 +04:00
public int TotalCount { get; set; }
2023-04-04 14:30:46 +04:00
public List<Tuple<string, int>> Components { get; set; } = new();
2023-03-26 17:06:05 +04:00
}
}