summaryrefslogtreecommitdiffstats
path: root/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs')
-rw-r--r--projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs b/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs
new file mode 100644
index 0000000..0fbd9f4
--- /dev/null
+++ b/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs
@@ -0,0 +1,14 @@
+namespace MvcRelyingParty.Models {
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Web;
+
+ public class AccountAuthorizeModel {
+ public string ConsumerApp { get; set; }
+
+ public bool IsUnsafeRequest { get; set; }
+
+ public string VerificationCode { get; set; }
+ }
+}