17 lines
410 B
C#
17 lines
410 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LawFirmContracts.ViewModels
|
|
{
|
|
public class ReportDocumentBlankViewModel
|
|
{
|
|
public string BlankName { get; set; } = string.Empty;
|
|
public int TotalCount { get; set; }
|
|
public List<(string Document, int Count)> Documents { get; set; } = new();
|
|
|
|
}
|
|
}
|