The property GravatarId in User and Author models is marked as obsolete

This commit is contained in:
Georgi Baychev
2014-12-10 22:48:05 +01:00
parent 7c04fe5d97
commit 57d65dbe60
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -15,8 +15,9 @@ namespace Octokit
public string AvatarUrl { get; set; }
/// <summary>
/// Hex Gravatar identifier
/// Hex Gravatar identifier, now obsolete
/// </summary>
[Obsolete("This property is now obsolete, use AvatarUrl instead")]
public string GravatarId { get; set; }
public string Url { get; set; }
+2 -1
View File
@@ -11,8 +11,9 @@ namespace Octokit
public class User : Account
{
/// <summary>
/// Hex Gravatar identifier
/// Hex Gravatar identifier, now obsolete
/// </summary>
[Obsolete("This property is now obsolete, use AvatarUrl instead")]
public string GravatarId { get; set; }
/// <summary>