diff --git a/Octokit/Models/Response/PullRequestFile.cs b/Octokit/Models/Response/PullRequestFile.cs index 703a0477..efa97899 100644 --- a/Octokit/Models/Response/PullRequestFile.cs +++ b/Octokit/Models/Response/PullRequestFile.cs @@ -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