diff options
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs b/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs index 925c616..b479cc0 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs @@ -4,7 +4,27 @@ using System.Linq; using System.Text; - public enum HumanGender { Unknown, Male, Female, Other } + public enum HumanGender { + /// <summary> + /// The gender is unknown. + /// </summary> + Unknown, + + /// <summary> + /// The gender is male. + /// </summary> + Male, + + /// <summary> + /// The gender is female. + /// </summary> + Female, + + /// <summary> + /// Hmmmm... What could this be? + /// </summary> + Other, + } public interface IOAuth2Graph { string Id { get; } |