OpenID - Simple Registration Extension (http://openid.net/specs/openid-simple-registration-extension-1_0.html) protocol extension implemented
13 lines
218 B
C#
13 lines
218 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Owin.Security.Providers.OpenID
|
|
{
|
|
public class OpenIDAuthorizationEndpointInfo
|
|
{
|
|
|
|
public string Url { get; set; }
|
|
|
|
}
|
|
} |