Добавлен класс search модели клиента

This commit is contained in:
Никита Потапов 2024-04-06 14:25:04 +04:00
parent a297252595
commit 3d9db83280

View File

@ -0,0 +1,9 @@
namespace SecuritySystemContracts.SearchModels
{
public class ClientSearchModel
{
public int Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
}
}