summaryrefslogtreecommitdiffstats
path: root/projecttemplates/MvcRelyingParty/Models/AccountAuthorizeModel.cs
blob: 0fbd9f4b98246100c362df420687a724407fce50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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; }
	}
}