Basic Commit viewer.
[Gitrdone.git] / Git / Tag.cs
blob3e6989882f20ff7d93fd0d93f92c88a4dd2408b2
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
5 namespace Git
7 public class Tag : 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 Tag(string name, string path) : base(path)
17 m_name = name;