create the Tree collection to make Everything Less Terrible

This commit is contained in:
Brendan Forster
2013-11-27 11:35:10 -08:00
parent 607b024452
commit e9b8f5af25
+6
View File
@@ -1,10 +1,16 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics.CodeAnalysis;
namespace Octokit
{
public class NewTree
{
public NewTree()
{
Tree = new Collection<NewTreeItem>();
}
/// <summary>
/// The SHA1 of the tree you want to update with new data.
/// </summary>