Skip to content

Commit

Permalink
Merge pull request #907 from naveensrinivasan/encodedcontent-public-#861
Browse files Browse the repository at this point in the history
Making Encodedcontent public #861
  • Loading branch information
haacked committed Sep 23, 2015
2 parents bda2235 + 807188a commit 504bad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Octokit/Models/Response/RepositoryContent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public RepositoryContent(string name, string path, string sha, int size, Content
/// The Base64 encoded content if this is a file. Otherwise it's null.
/// </summary>
[Parameter(Key = "content")]
protected string EncodedContent { get; set; }
public string EncodedContent { get; private set; }

/// <summary>
/// The unencoded content. Only access this if the content is expected to be text and not binary content.
Expand Down

0 comments on commit 504bad7

Please sign in to comment.