16 lines
419 B
C#
Raw Normal View History

2024-03-25 01:48:14 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TypographyContracts.ViewModels
{
public class ReportPrintedComponentViewModel
{
public string PrintedName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<(string Component, int Count)> Components { get; set; } = new();
}
}