PIbd-22_Fedorenko_Puchkina_.../LawFim/LawFirmContracts/SearchModels/LawyerSearchModel.cs

12 lines
304 B
C#
Raw Normal View History

2024-04-27 19:02:25 +04:00
namespace LawFirmContracts.SearchModels
{
public class LawyerSearchModel
{
public int? Id { get; set; }
public string? FIO { get; set; }
public string? Phone { get; set; }
public string? Email { get; set; }
public int? GuarantorId { get; set; }
}
}