10 lines
241 B
C#

namespace SecuritySystemContracts.SearchModels
{
public class ImplementerSearchModel
{
public string? ImplementerFIO { get; set; }
public string? Password { get; set; }
public int? Id { get; set; }
}
}