Case_accounting/CaseAccounting/CaseAccountingContracts/ViewModels/ReportHearingLawyerViewModel.cs

16 lines
435 B
C#
Raw Normal View History

2023-04-08 17:03:58 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.ViewModels
{
public class ReportHearingLawyerViewModel
{
public string Information { get; set; } = string.Empty;
public DateTime Date { get; set; }
public List<(string Surname, string Name, string Patronymic)> Lawyers { get; set; } = new();
}
}