diff options
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs')
-rw-r--r-- | projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs b/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs index 04fda47..fbd0ae7 100644 --- a/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs +++ b/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs @@ -10,5 +10,13 @@ public string LastName { get; set; } public string EmailAddress { get; set; } + + public IList<AuthorizedApp> AuthorizedApps { get; set; } + + public class AuthorizedApp { + public string Token { get; set; } + + public string AppName { get; set; } + } } } |