diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-30 07:37:37 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-30 07:37:37 -0800 |
commit | fe0bcb80dcc2f38ffb58d2de433dbc6cfae22be2 (patch) | |
tree | 966e3bbada14dd4dccefd77943d9dc1d7e61d5ae /projecttemplates/MvcRelyingParty/Models/AccountInfoModel.cs | |
parent | 2cec9b5a841dee8cb0326c5d4ff27901a684c749 (diff) | |
download | DotNetOpenAuth-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.cs | 14 |
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; } + } +} |