// Copyright (c) Umbraco. // See LICENSE for more details. namespace Umbraco.Cms.Core.Actions; /// /// This action is invoked when copying a document or media. /// public class ActionUpdate : IAction { /// public const char ActionLetter = 'A'; /// public const string ActionAlias = "update"; /// public char Letter => ActionLetter; /// public string Alias => ActionAlias; /// public string Category => Constants.Conventions.PermissionCategories.ContentCategory; /// public string Icon => "icon-save"; /// public bool ShowInNotifier => true; /// public bool CanBePermissionAssigned => true; }