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
|
|
|
|
|
{
|
2023-05-20 03:13:10 +04:00
|
|
|
|
public string Hearing { get; set; } = string.Empty;
|
|
|
|
|
public List<CaseLawyerViewModel> CaseLawyers { get; set; } = new();
|
2023-04-08 17:03:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|