mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
Fixed moar failing tests
This commit is contained in:
@@ -9,28 +9,28 @@ namespace Octokit
|
||||
/// The number of collaborators allowed with this plan.
|
||||
/// </summary>
|
||||
/// <remarks>This returns <see cref="long"/> because GitHub Enterprise uses a sentinel value of 999999999999 to denote an "unlimited" number of collaborators.</remarks>
|
||||
public long Collaborators { get; set; }
|
||||
public long Collaborators { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The name of the plan.
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
public string Name { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The number of private repositories allowed with this plan.
|
||||
/// </summary>
|
||||
/// <remarks>This returns <see cref="long"/> because GitHub Enterprise uses a sentinel value of 999999999999 to denote an "unlimited" number of plans.</remarks>
|
||||
public long PrivateRepos { get; set; }
|
||||
public long PrivateRepos { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The amount of disk space allowed with this plan.
|
||||
/// </summary>
|
||||
/// <remarks>This returns <see cref="long"/> because GitHub Enterprise uses a sentinel value of 999999999999 to denote an "unlimited" amount of disk space.</remarks>
|
||||
public long Space { get; set; }
|
||||
public long Space { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The billing email for the organization. Only has a value in response to editing an organization.
|
||||
/// </summary>
|
||||
public string BillingEmail { get; set; }
|
||||
public string BillingEmail { get; protected set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user