PIbd23_Ivanova_Yakobchuk_Co.../LawCompany/LawCompanyContracts/SearchModels/LawyerSearchModel.cs

12 lines
268 B
C#
Raw Normal View History

2024-05-01 23:48:28 +04:00
namespace LawCompanyContracts.SearchModels
{
2024-05-01 23:48:28 +04:00
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; }
}
}