summaryrefslogtreecommitdiffstats
path: root/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs')
-rw-r--r--projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs b/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs
index 97c96f0..686d481 100644
--- a/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs
+++ b/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs
@@ -4,9 +4,13 @@
using System.Linq;
using System.Web;
+ using DotNetOpenAuth.OAuth2.Messages;
+
public class AccountAuthorizeModel {
public string ClientApp { get; set; }
public HashSet<string> Scope { get; set; }
+
+ public EndUserAuthorizationRequest AuthorizationRequest { get; set; }
}
}