OAuth OK!

This commit is contained in:
Paul Schneider 2016-06-12 01:32:51 +02:00
commit 567e4a6635
382 changed files with 52478 additions and 7572 deletions

View file

@ -1,12 +1,17 @@
using System.Collections.Generic;
using Microsoft.Extensions.Primitives;
namespace Yavsc
namespace Yavsc.Models.Auth
{
public class AuthorisationView { 
public Application Application { get; set; }
public IEnumerable<string> Scopes { get; set; }
public Scope[] Scopes { get; set; }
public string RedirectUrl { get; set; }
public string Message { get; set; }
public string ClientId {get; set; }
public string State {get; set; }
public string ResponseType { get; set; }
public IDictionary<string,StringValues> QueryStringComponents { get; set; }
}
}