All files
[pithos-ms-client] / trunk / Pithos.ShellExtensions / Menus / DisplayFlags.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5
6 namespace Pithos.ShellExtensions.Menus
7 {
8     [Flags]
9     enum DisplayFlags
10     {
11         None,
12         Folder,
13         File,
14         All
15     }
16
17 }