summaryrefslogtreecommitdiffstats
path: root/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-12-30 07:37:37 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-12-30 07:37:37 -0800
commitfe0bcb80dcc2f38ffb58d2de433dbc6cfae22be2 (patch)
tree966e3bbada14dd4dccefd77943d9dc1d7e61d5ae /projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs
parent2cec9b5a841dee8cb0326c5d4ff27901a684c749 (diff)
downloadDotNetOpenAuth-fe0bcb80dcc2f38ffb58d2de433dbc6cfae22be2.zip
DotNetOpenAuth-fe0bcb80dcc2f38ffb58d2de433dbc6cfae22be2.tar.gz
DotNetOpenAuth-fe0bcb80dcc2f38ffb58d2de433dbc6cfae22be2.tar.bz2
Added an Account Info page.
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs')
-rw-r--r--projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs b/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs
new file mode 100644
index 0000000..04fda47
--- /dev/null
+++ b/projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs
@@ -0,0 +1,14 @@
+namespace MvcRelyingParty.Models {
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Web;
+
+ public class AccountInfoModel {
+ public string FirstName { get; set; }
+
+ public string LastName { get; set; }
+
+ public string EmailAddress { get; set; }
+ }
+}