// // This project is open source. Released under the XYZ license // namespace Pithos.ShellExtensions.Menus { using System; /// /// Specifies whether a context menu item is displayed for files, folders or both. /// [Flags] public enum DisplayFlags { /// /// Don't display the item at all /// None, /// /// Display the item only on folders /// Folder, /// /// Display the item only on files /// File, /// /// Display the item both on folders and files /// All } }