summaryrefslogtreecommitdiffstats
path: root/src/OAuth/OAuthAuthorizationServer/Models/AccountModels.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/OAuth/OAuthAuthorizationServer/Models/AccountModels.cs')
-rw-r--r--src/OAuth/OAuthAuthorizationServer/Models/AccountModels.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/OAuth/OAuthAuthorizationServer/Models/AccountModels.cs b/src/OAuth/OAuthAuthorizationServer/Models/AccountModels.cs
new file mode 100644
index 0000000..32deb0b
--- /dev/null
+++ b/src/OAuth/OAuthAuthorizationServer/Models/AccountModels.cs
@@ -0,0 +1,13 @@
+namespace OAuthAuthorizationServer.Models {
+ using System.ComponentModel;
+ using System.ComponentModel.DataAnnotations;
+
+ public class LogOnModel {
+ [Required]
+ [DisplayName("OpenID")]
+ public string UserSuppliedIdentifier { get; set; }
+
+ [DisplayName("Remember me?")]
+ public bool RememberMe { get; set; }
+ }
+}