ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreContracts/ViewModels/ReportComponentsViewModel.cs

12 lines
296 B
C#
Raw Permalink Normal View History

2024-05-30 07:44:40 +04:00
namespace HardwareShopContracts.ViewModels
{
public class ReportComponentsViewModel
{
public string ComponentName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<Tuple<string, int>> ProductOrBuilds { get; set; } = new();
}
}