2024-04-06 14:25:04 +04:00
|
|
|
|
namespace SecuritySystemContracts.SearchModels
|
|
|
|
|
{
|
|
|
|
|
public class ClientSearchModel
|
|
|
|
|
{
|
2024-04-06 20:04:29 +04:00
|
|
|
|
public int? Id { get; set; }
|
2024-04-06 14:25:04 +04:00
|
|
|
|
public string? ClientFIO { get; set; }
|
|
|
|
|
public string? Email { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|