Redid the tree again.
[Gitrdone.git] / Git / Tree.cs
blobd24e4944c1501d18ddb7697f70c4397108a31a20
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
5 namespace Git
7 public class Tree : Treeish
9 protected string m_name;
10 public override string Name { get { return m_name; } internal set { m_name = value; } }
12 protected string m_hash;
13 public override string ID { get { return m_hash; } internal set { m_hash = value; } }
15 public Tree(string path) : base(path)