18 lines
421 B
C#
18 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
}
|
|
}
|