// Copyright (c) Umbraco. // See LICENSE for more details. namespace Umbraco.Cms.Core.Actions { /// /// This action is invoked when the content/media item is to be restored from the recycle bin /// public class ActionRestore : IAction { /// /// The unique action alias /// public const string ActionAlias = "restore"; /// public char Letter => 'V'; /// public string Alias => ActionAlias; /// public string? Category => null; /// public string Icon => "undo"; /// public bool ShowInNotifier => true; /// public bool CanBePermissionAssigned => false; } }