don't worry about those protected setters

This commit is contained in:
Brendan Forster
2015-02-24 19:05:09 +09:30
parent b0a0d4eda3
commit f10f6c7412
+4 -4
View File
@@ -18,10 +18,10 @@ namespace Octokit
Timeout = timeout;
}
public string FileName { get; protected set; }
public string ContentType { get; protected set; }
public Stream RawData { get; protected set; }
public TimeSpan? Timeout { get; protected set; }
public string FileName { get; set; }
public string ContentType { get; set; }
public Stream RawData { get; set; }
public TimeSpan? Timeout { get; set; }
internal string DebuggerDisplay
{