aleksandr chegodaev 39c1538546 lab4
2024-05-10 23:48:48 +04:00

16 lines
418 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmContracts.ViewModels
{
public class ReportDocumentComponentViewModel
{
public string DocumentName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<(string Component, int Count)> Components { get; set; } = new();
}
}