2023-04-08 19:57:10 +04:00
|
|
|
|
|
|
|
|
|
namespace BankContracts.SearchModels
|
|
|
|
|
{
|
2023-04-08 22:43:54 +04:00
|
|
|
|
public class ClientSearchModel
|
2023-04-08 19:57:10 +04:00
|
|
|
|
{
|
2023-04-09 12:14:52 +04:00
|
|
|
|
public string? ClientFIO { get; set; }
|
2023-04-08 19:57:10 +04:00
|
|
|
|
|
2023-04-09 12:14:52 +04:00
|
|
|
|
public string? ClientPassword { get; set; }
|
2023-04-08 19:57:10 +04:00
|
|
|
|
|
2023-04-09 12:14:52 +04:00
|
|
|
|
public string? ClientLogin { get; set; }
|
2023-04-08 19:57:10 +04:00
|
|
|
|
public int? Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|