9 lines
207 B
C#
9 lines
207 B
C#
namespace LawCompanyContracts.ViewModels
|
|
{
|
|
public class LawyerHearingCountViewModel
|
|
{
|
|
public string FIO { get; set; } = string.Empty;
|
|
public int HearingCount { get; set; }
|
|
}
|
|
}
|