diff options
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; } + } +} |