14 lines
279 B
C#
Raw Permalink Normal View History


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