summaryrefslogtreecommitdiffstats
path: root/samples/OAuthAuthorizationServer/Models/AccountModels.cs
blob: 32deb0b50d2a62b81b8e6c5545e182604c739db1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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; }
	}
}