15 lines
466 B
C#
15 lines
466 B
C#
namespace BankContracts.SearchModels
|
|
{
|
|
public class ClientSearchModel
|
|
{
|
|
public string? Snils { get; set; }
|
|
public string? ClientSurname { get; set; }
|
|
public string? ClientName { get; set; }
|
|
public string? ClientPatronymic { get; set; }
|
|
public string? Phone { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? PasswordHash { get; set; }
|
|
public int? WorkerId { get; set; }
|
|
}
|
|
}
|