[Bind] Added Enum.Obsolete property

This commit is contained in:
thefiddler 2014-07-21 16:02:56 +02:00
parent 33c9fe5025
commit bf65005e7b

View file

@ -69,6 +69,9 @@ namespace Bind.Structures
{
ConstantCollection.Add(constant.Name, constant);
}
public string Obsolete { get; set; }
public bool IsObsolete { get { return !String.IsNullOrEmpty(Obsolete); } }
}
#endregion