mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 22:25:12 +00:00
Renamed PullRequestFile's *Uri properties to *Url
This commit is contained in:
@@ -14,7 +14,7 @@ namespace Octokit
|
|||||||
{
|
{
|
||||||
public PullRequestFile() { }
|
public PullRequestFile() { }
|
||||||
|
|
||||||
public PullRequestFile(string sha, string fileName, string status, int additions, int deletions, int changes, Uri blobUri, Uri rawUri, Uri contentsUri, string patch)
|
public PullRequestFile(string sha, string fileName, string status, int additions, int deletions, int changes, Uri blobUrl, Uri rawUrl, Uri contentsUrl, string patch)
|
||||||
{
|
{
|
||||||
Sha = sha;
|
Sha = sha;
|
||||||
FileName = fileName;
|
FileName = fileName;
|
||||||
@@ -22,9 +22,9 @@ namespace Octokit
|
|||||||
Additions = additions;
|
Additions = additions;
|
||||||
Deletions = deletions;
|
Deletions = deletions;
|
||||||
Changes = changes;
|
Changes = changes;
|
||||||
BlobUri = blobUri;
|
BlobUrl = blobUrl;
|
||||||
RawUri = rawUri;
|
RawUrl = rawUrl;
|
||||||
ContentsUri = contentsUri;
|
ContentsUrl = contentsUrl;
|
||||||
Patch = patch;
|
Patch = patch;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -35,9 +35,9 @@ namespace Octokit
|
|||||||
public int Additions { get; protected set; }
|
public int Additions { get; protected set; }
|
||||||
public int Deletions { get; protected set; }
|
public int Deletions { get; protected set; }
|
||||||
public int Changes { get; protected set; }
|
public int Changes { get; protected set; }
|
||||||
public Uri BlobUri { get; protected set; }
|
public Uri BlobUrl { get; protected set; }
|
||||||
public Uri RawUri { get; protected set; }
|
public Uri RawUrl { get; protected set; }
|
||||||
public Uri ContentsUri { get; protected set; }
|
public Uri ContentsUrl { get; protected set; }
|
||||||
public string Patch { get; protected set; }
|
public string Patch { get; protected set; }
|
||||||
|
|
||||||
internal string DebuggerDisplay
|
internal string DebuggerDisplay
|
||||||
|
|||||||
Reference in New Issue
Block a user