mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
using System.Diagnostics;
|
|
using System.Globalization;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// Represents updateable fields on an organization. Values that are null will not be sent in the request.
|
|
/// Use string.empty to clear a value.
|
|
/// </summary>
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class OrganizationUpdate
|
|
{
|
|
/// <summary>
|
|
/// Billing email address. This address is not publicized.
|
|
/// </summary>
|
|
public string BillingEmail { get; set; }
|
|
|
|
/// <summary>
|
|
/// The company name.
|
|
/// </summary>
|
|
public string Company { get; set; }
|
|
|
|
/// <summary>
|
|
/// The publicly visible email address.
|
|
/// </summary>
|
|
public string Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// The location.
|
|
/// </summary>
|
|
public string Location { get; set; }
|
|
|
|
/// <summary>
|
|
/// The shorthand name of the company.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the description of the organization.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The description.
|
|
/// </value>
|
|
public string Description { get; set; }
|
|
|
|
internal string DebuggerDisplay
|
|
{
|
|
get
|
|
{
|
|
return string.Format(CultureInfo.InvariantCulture, "{0}", Name);
|
|
}
|
|
}
|
|
}
|
|
}
|