2024-08-28 03:10:45 +04:00

9 lines
207 B
C#

namespace LawCompanyContracts.ViewModels
{
public class LawyerHearingCountViewModel
{
public string FIO { get; set; } = string.Empty;
public int HearingCount { get; set; }
}
}