10 lines
227 B
C#
10 lines
227 B
C#
|
namespace SecuritySystemContracts.SearchModels
|
|||
|
{
|
|||
|
public class ClientSearchModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string? ClientFIO { get; set; }
|
|||
|
public string? Email { get; set; }
|
|||
|
}
|
|||
|
}
|