namespace Umbraco.Web.UI
{
///
/// This is used for anything that is assigned to an app
///
///
/// Currently things that need to be assigned to an app in order for user security to work are:
/// dialogs, ITasks, editors
///
public interface IAssignedApp
{
///
/// Returns the app alias that this element belongs to
///
string AssignedApp { get; }
}
}