2023-04-08 16:51:27 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CaseAccountingContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportHearingSpecializationViewModel
|
|
|
|
|
{
|
2023-05-25 01:59:24 +04:00
|
|
|
|
public string Specialization { get; set; } = string.Empty;
|
2023-04-08 16:51:27 +04:00
|
|
|
|
|
2023-05-25 01:59:24 +04:00
|
|
|
|
public string Name { get; set; } = string.Empty;
|
2023-04-08 16:51:27 +04:00
|
|
|
|
|
2023-05-25 01:59:24 +04:00
|
|
|
|
public List<HearingViewModel> hearings { get; set; } = new();
|
2023-04-08 16:51:27 +04:00
|
|
|
|
}
|
|
|
|
|
}
|