18 lines
446 B
C#
18 lines
446 B
C#
using Umbraco.Core.Services;
|
|
|
|
namespace Umbraco.Web.Models.Trees
|
|
{
|
|
/// <summary>
|
|
/// Represents the export member menu item
|
|
/// </summary>
|
|
public sealed class ExportMember : ActionMenuItem
|
|
{
|
|
public override string AngularServiceName => "umbracoMenuActions";
|
|
|
|
public ExportMember(ILocalizedTextService textService) : base("export", textService)
|
|
{
|
|
Icon = "download-alt";
|
|
}
|
|
}
|
|
}
|