13 lines
272 B
C#
13 lines
272 B
C#
|
namespace SecureShopContracts.SearchModels
|
|||
|
{
|
|||
|
public class ClientSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
|
|||
|
public string? ClientFIO { get; set; }
|
|||
|
|
|||
|
public string? Email { get; set; }
|
|||
|
|
|||
|
public string? Password { get; set; }
|
|||
|
}
|
|||
|
}
|