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