namespace Bit.Identity.IdentityServer.RequestValidators;
public interface IAuthRequestHeaderValidator
{
///
/// This method matches the Email in the header the input email. Implementation depends on
/// GrantValidator.
///
/// email fetched by grantValidator
/// true if the emails match false otherwise
bool ValidateAuthEmailHeader(string userEmail);
}