20 lines
499 B
C#
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();
|
|
}
|
|
}
|