using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CaseAccountingContracts.ViewModels { public class ReportLawyerHearingViewModel { public string Lawyer { get; set; } = string.Empty; public List Hearings { get; set; } = new(); } }