using System;
namespace Syntriax.Modules.Action
{
public interface IActionWithDeactivation : IAction
{
///
/// Called when the is Deactivated
///
/// The that Deactivated
Action OnDeactivated { get; set; }
///
/// Called when the is Deactivated
///
void Deactivate();
}
}