summaryrefslogtreecommitdiffstats
path: root/src/OAuth/OAuthAuthorizationServer/Models/AccountAuthorizeModel.cs
diff options
context:
space:
mode:
authorDavid Christiansen <coding@davedoes.net>2012-03-15 22:10:55 +0000
committerDavid Christiansen <coding@davedoes.net>2012-03-15 22:10:55 +0000
commita5bfa2bb8a614b1932ec8b7bbc6a0cc6bca3051f (patch)
treea3057157fa3287e0c0c4cc49be1854f9aa63d321 /src/OAuth/OAuthAuthorizationServer/Models/AccountAuthorizeModel.cs
parent02ce959db12fec57e846e5ebfa662cd0327ce69c (diff)
downloadDotNetOpenAuth.Samples-a5bfa2bb8a614b1932ec8b7bbc6a0cc6bca3051f.zip
DotNetOpenAuth.Samples-a5bfa2bb8a614b1932ec8b7bbc6a0cc6bca3051f.tar.gz
DotNetOpenAuth.Samples-a5bfa2bb8a614b1932ec8b7bbc6a0cc6bca3051f.tar.bz2
W.I.P.
* Initial migration and reference to DNOA Nuget packages (From teamcity.dotnetopenauth.net) * Awaiting fix to DotNetOpenAuth.OpenIdOAuth.nuspec in order to complete migration.
Diffstat (limited to 'src/OAuth/OAuthAuthorizationServer/Models/AccountAuthorizeModel.cs')
-rw-r--r--src/OAuth/OAuthAuthorizationServer/Models/AccountAuthorizeModel.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/OAuth/OAuthAuthorizationServer/Models/AccountAuthorizeModel.cs b/src/OAuth/OAuthAuthorizationServer/Models/AccountAuthorizeModel.cs
new file mode 100644
index 0000000..ee91416
--- /dev/null
+++ b/src/OAuth/OAuthAuthorizationServer/Models/AccountAuthorizeModel.cs
@@ -0,0 +1,16 @@
+namespace OAuthAuthorizationServer.Models {
+ using System;
+ using System.Collections.Generic;
+ 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; }
+ }
+}