using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DotNet.Revit.Hook.Interface { /// /// IHook /// public interface IHook { /// /// Installs this Hook. /// void Install(); /// /// Uninstalls this Hook. /// void Uninstall(); } }