10 lines
229 B
C#

namespace ServiceStationContracts.SearchModels
{
public class ExecutorSearchModel
{
public int? Id { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}