summaryrefslogtreecommitdiffstats
path: root/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-07-17 22:04:56 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-07-17 22:04:56 -0700
commit7c86d53eac655514ac0c8b7c8ede95c0af5798fb (patch)
tree390b5c5a1f695812aa61c2fdfa845e4fe0ae3590 /projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs
parent3ab1adf5a949a5799f6a7fee377ae3c7e77ec69a (diff)
parent17c604a07b35bcfd3a77299777521f04063bd6ae (diff)
downloadDotNetOpenAuth-7c86d53eac655514ac0c8b7c8ede95c0af5798fb.zip
DotNetOpenAuth-7c86d53eac655514ac0c8b7c8ede95c0af5798fb.tar.gz
DotNetOpenAuth-7c86d53eac655514ac0c8b7c8ede95c0af5798fb.tar.bz2
Merge branch 'oauth2templates' into oauth2
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs')
-rw-r--r--projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs b/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs
index 787b8df..6e005c4 100644
--- a/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs
+++ b/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs
@@ -17,9 +17,11 @@
public IList<AuthenticationToken> AuthenticationTokens { get; set; }
public class AuthorizedApp {
- public string Token { get; set; }
+ public int AuthorizationId { get; set; }
public string AppName { get; set; }
+
+ public string Scope { get; set; }
}
}
}