12 lines
304 B
C#
12 lines
304 B
C#
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; }
|
|
}
|
|
}
|