yavsc/Yavsc/ViewModels/Auth/AuthorisationView.cs

17 lines
511 B
C#
Raw Normal View History

2016-06-09 01:29:23 +02:00
using System.Collections.Generic;
2016-06-12 01:32:51 +02:00
using Microsoft.Extensions.Primitives;
2016-06-01 23:47:06 +02:00
2016-06-12 01:32:51 +02:00
namespace Yavsc.Models.Auth
2016-06-01 23:47:06 +02:00
{
public class AuthorisationView { 
2016-06-12 01:32:51 +02:00
public Scope[] Scopes { get; set; }
2016-06-09 01:29:23 +02:00
public string RedirectUrl { get; set; }
public string Message { get; set; }
2016-06-12 01:32:51 +02:00
public string ClientId {get; set; }
public string State {get; set; }
2016-06-09 01:29:23 +02:00
2016-06-12 01:32:51 +02:00
public string ResponseType { get; set; }
public IDictionary<string,StringValues> QueryStringComponents { get; set; }
2016-06-01 23:47:06 +02:00
}
}