Files
yavsc/Yavsc/ViewModels/Auth/AuthorisationView.cs
2016-06-12 01:32:51 +02:00

17 lines
511 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
using Microsoft.Extensions.Primitives;
namespace Yavsc.Models.Auth
{
public class AuthorisationView { 
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; }
}
}