Case_accounting/CaseAccounting/CaseAccountingContracts/ViewModels/ReportLawyerHearingViewModel.cs
2023-04-09 00:09:58 +04:00

20 lines
499 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.ViewModels
{
public class ReportLawyerHearingViewModel
{
public string Name { get; set; } = string.Empty;
public string Surname { get; set; } = string.Empty;
public string Patronymic { get; set; } = string.Empty;
public List<(DateTime Date, string Information)> Hearings { get; set; } = new();
}
}