Fixed moar failing tests

This commit is contained in:
Kristian Hellang
2015-01-06 00:51:36 +01:00
parent 8cdf53d878
commit cb4f056a86
8 changed files with 49 additions and 49 deletions
+5 -5
View File
@@ -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; }
}
}