blob: c0b1c03479f8e7b83694fd9ca6f0bacaf46f8fb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//-----------------------------------------------------------------------
// <copyright file="Gender.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenId.Extensions.SimpleRegistration {
/// <summary>
/// Indicates the gender of a user.
/// </summary>
public enum Gender {
/// <summary>
/// The user is male.
/// </summary>
Male,
/// <summary>
/// The user is female.
/// </summary>
Female,
}
}
|