Added SQLite status storage
[pithos-ms-client] / trunk / Pithos.ShellExtensions / Menus / DisplayFlags.cs
index 6702375..1e64cf9 100644 (file)
@@ -1,17 +1,35 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
+// <copyright file="DisplayFlags.cs" company="GRNet">
+// This project is open source. Released under the XYZ license
+// </copyright>
 
 namespace Pithos.ShellExtensions.Menus
 {
+    using System;
+
+    /// <summary>
+    /// Specifies whether a context menu item is displayed for files, folders or both.
+    /// </summary>
     [Flags]
-    enum DisplayFlags
+    public enum DisplayFlags
     {
+        /// <summary>
+        /// Don't display the item at all
+        /// </summary>
         None,
+
+        /// <summary>
+        /// Display the item only on folders
+        /// </summary>
         Folder,
+
+        /// <summary>
+        /// Display the item only on files
+        /// </summary>
         File,
+
+        /// <summary>
+        /// Display the item both on folders and files
+        /// </summary>
         All
     }
-
 }