Files
Umbraco-CMS/umbraco/interfaces/IAction.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00: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;}
}
}