Case_accounting/CaseAccounting/CaseAccountingContracts/ViewModels/ReportLawyerHearingViewModel.cs

15 lines
346 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.ViewModels
{
public class ReportLawyerHearingViewModel
{
2023-05-20 01:21:33 +04:00
public string Lawyer { get; set; } = string.Empty;
public List<string> Hearings { get; set; } = new();
}
}