fix for making the setter private

fix for making the setter private
This commit is contained in:
Naveen
2015-09-22 19:19:12 -04:00
parent 07f15ba2d4
commit 807188af36
+1 -1
View File
@@ -31,7 +31,7 @@ namespace Octokit
/// The Base64 encoded content if this is a file. Otherwise it's null.
/// </summary>
[Parameter(Key = "content")]
public 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.