using System; namespace umbraco.interfaces { /// /// Summary description for ActionI. /// public interface IAction { char Letter {get;} bool ShowInNotifier {get;} bool CanBePermissionAssigned {get;} string Icon {get;} string Alias {get;} string JsFunctionName {get;} /// /// A path to a supporting JavaScript file for the IAction. A script tag will be rendered out with the reference to the JavaScript file. /// string JsSource {get;} } }