Files
Umbraco-CMS/src/umbraco.interfaces/IAction.cs
2012-06-22 20:39:48 +04:00

22 lines
547 B
C#

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