You've already forked linux-packaging-mono
21 lines
506 B
C#
21 lines
506 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
namespace Microsoft.Web.WebPages.OAuth
|
|
{
|
|
/// <summary>
|
|
/// Represents built in OpenID clients.
|
|
/// </summary>
|
|
public enum BuiltInOpenIDClient
|
|
{
|
|
/// <summary>
|
|
/// Represents Google OpenID client
|
|
/// </summary>
|
|
Google,
|
|
|
|
/// <summary>
|
|
/// Represents Yahoo OpenID Client
|
|
/// </summary>
|
|
Yahoo
|
|
}
|
|
}
|