// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
namespace Microsoft.Web.WebPages.OAuth
{
///
/// Represents built in OpenID clients.
///
public enum BuiltInOpenIDClient
{
///
/// Represents Google OpenID client
///
Google,
///
/// Represents Yahoo OpenID Client
///
Yahoo
}
}