Files
octokit.net/Octokit/Models/Request/UserUpdate.cs
2016-10-29 03:14:05 +01:00

56 lines
1.4 KiB
C#

using System.Diagnostics;
using System.Globalization;
namespace Octokit
{
/// <summary>
/// Represents updatable fields on a user. Values that are null will not be sent in the request.
/// Use string.empty if you want to clear a value.
/// </summary>
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class UserUpdate
{
/// <summary>
/// This user's bio.
/// </summary>
public string Bio { get; set; }
/// <summary>
/// URL for this user's blog.
/// </summary>
public string Blog { get; set; }
/// <summary>
/// The company this user's works for.
/// </summary>
public string Company { get; set; }
/// <summary>
/// This user's email.
/// </summary>
public string Email { get; set; }
/// <summary>
/// The geographic location of this user.
/// </summary>
public string Location { get; set; }
/// <summary>
/// This user's full name.
/// </summary>
public string Name { get; set; }
/// <summary>
/// Tells if this user is currently hireable.
/// </summary>
public bool? Hireable { get; set; }
internal string DebuggerDisplay
{
get
{
return string.Format(CultureInfo.InvariantCulture, "Name: {0}", Name);
}
}
}
}