2023-04-08 16:51:27 +04:00
|
|
|
|
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;
|
|
|
|
|
|
2023-04-09 00:09:58 +04:00
|
|
|
|
public List<(DateTime Date, string Information)> Hearings { get; set; } = new();
|
2023-04-08 16:51:27 +04:00
|
|
|
|
}
|
|
|
|
|
}
|