Renamed PullRequestFile's *Uri properties to *Url

This commit is contained in:
Dillon Buchanan
2015-04-26 10:20:36 -04:00
parent e9918f8b6a
commit 88e6c92bb2

View File

@@ -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