Files
2026-02-23 16:57:09 +08:00

24 lines
429 B
C#

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