Case_accounting/CaseAccounting/CaseAccountingContracts/ViewModels/ReportLawyerHearingViewModel.cs
2023-04-08 16:51:27 +04:00

20 lines
492 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;
List<(DateTime Date, string Information)> Hearings { get; set; } = new();
}
}