mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-31 10:12:38 +00:00
Documented missing properties; Whitespace and typo tomfoolery patched
This commit is contained in:
committed by
Brendan Forster
parent
6323b62f71
commit
a67ce05cef
@@ -24,7 +24,5 @@ namespace Octokit
|
||||
/// Whether the pull request is open or closed. The default is <see cref="ItemState.Open"/>.
|
||||
/// </summary>
|
||||
public ItemState State { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,12 +9,19 @@ namespace Octokit
|
||||
State = ItemState.Open;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// "open" or "closed" to filter by state. Default is "open".
|
||||
/// </summary>
|
||||
public ItemState State { get; set; }
|
||||
|
||||
[Parameter(Key = "head")]
|
||||
/// <summary>
|
||||
/// Filter pulls by head user and branch name in the format of "user:ref-name".
|
||||
/// </summary>
|
||||
public string Head { get; set; }
|
||||
|
||||
[Parameter(Key = "base")]
|
||||
/// <summary>
|
||||
/// Filter pulls by base branch name.
|
||||
/// </summary>
|
||||
public string Base { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,8 +14,19 @@ namespace Octokit
|
||||
/// </summary>
|
||||
public int Number { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The URL for the pull request page.
|
||||
/// </summary>
|
||||
public Uri HtmlUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The URL for the pull request's diff (.diff) file.
|
||||
/// </summary>
|
||||
public Uri DiffUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The URL for the pull request's patch (.patch) file.
|
||||
/// </summary>
|
||||
public Uri PatchUrl { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user