mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 14:15: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(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;
|
||||
FileName = fileName;
|
||||
@@ -22,9 +22,9 @@ namespace Octokit
|
||||
Additions = additions;
|
||||
Deletions = deletions;
|
||||
Changes = changes;
|
||||
BlobUri = blobUri;
|
||||
RawUri = rawUri;
|
||||
ContentsUri = contentsUri;
|
||||
BlobUrl = blobUrl;
|
||||
RawUrl = rawUrl;
|
||||
ContentsUrl = contentsUrl;
|
||||
Patch = patch;
|
||||
}
|
||||
|
||||
@@ -35,9 +35,9 @@ namespace Octokit
|
||||
public int Additions { get; protected set; }
|
||||
public int Deletions { get; protected set; }
|
||||
public int Changes { get; protected set; }
|
||||
public Uri BlobUri { get; protected set; }
|
||||
public Uri RawUri { get; protected set; }
|
||||
public Uri ContentsUri { get; protected set; }
|
||||
public Uri BlobUrl { get; protected set; }
|
||||
public Uri RawUrl { get; protected set; }
|
||||
public Uri ContentsUrl { get; protected set; }
|
||||
public string Patch { get; protected set; }
|
||||
|
||||
internal string DebuggerDisplay
|
||||
|
||||
Reference in New Issue
Block a user