From 807188af361a125c786cac10fc75e1bb51c26a73 Mon Sep 17 00:00:00 2001 From: Naveen Date: Tue, 22 Sep 2015 19:19:12 -0400 Subject: [PATCH] fix for making the setter private fix for making the setter private --- Octokit/Models/Response/RepositoryContent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Octokit/Models/Response/RepositoryContent.cs b/Octokit/Models/Response/RepositoryContent.cs index 6ea9f009a0..914e6da2d9 100644 --- a/Octokit/Models/Response/RepositoryContent.cs +++ b/Octokit/Models/Response/RepositoryContent.cs @@ -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. /// [Parameter(Key = "content")] - public string EncodedContent { get; set; } + public string EncodedContent { get; private set; } /// /// The unencoded content. Only access this if the content is expected to be text and not binary content.