Case_accounting/CaseAccounting/CaseAccountingContracts/ViewModels/ReportHearingLawyerViewModel.cs
2023-05-20 03:13:10 +04:00

15 lines
363 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.ViewModels
{
public class ReportHearingLawyerViewModel
{
public string Hearing { get; set; } = string.Empty;
public List<CaseLawyerViewModel> CaseLawyers { get; set; } = new();
}
}