mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-09 21:09:51 +00:00
Fixed failing tests
This commit is contained in:
@@ -11,33 +11,33 @@ namespace Octokit
|
||||
/// <summary>
|
||||
/// The URL associated with this reference.
|
||||
/// </summary>
|
||||
public string Url { get; set; }
|
||||
public string Url { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The reference label.
|
||||
/// </summary>
|
||||
public string Label { get; set; }
|
||||
public string Label { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The reference identifier.
|
||||
/// </summary>
|
||||
public string Ref { get; set; }
|
||||
public string Ref { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The sha value of the reference.
|
||||
/// </summary>
|
||||
public string Sha { get; set; }
|
||||
public string Sha { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The user associated with this reference.
|
||||
/// </summary>
|
||||
public User User { get; set; }
|
||||
public User User { get; protected set; }
|
||||
|
||||
/// <summary>
|
||||
/// The repository associated with this reference.
|
||||
/// </summary>
|
||||
[Parameter(Key = "repo")]
|
||||
public Repository Repository { get; set; }
|
||||
public Repository Repository { get; protected set; }
|
||||
|
||||
internal string DebuggerDisplay
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user