PageRenderTime 34ms CodeModel.GetById 25ms RepoModel.GetById 1ms app.codeStats 0ms

/IZWebFileManager/FileManagerCommandTargets.cs

http://izwebfilemanager.googlecode.com/
C# | 33 lines | 16 code | 2 blank | 15 comment | 0 complexity | 789818378a1dddbd3a7f42f87f63cd9f MD5 | raw file
  1. // Copyright (C) 2006 Igor Zelmanovich <izwebfilemanager@gmail.com>
  2. //
  3. // This program is free software; you can redistribute it and/or modify
  4. // it under the terms of the GNU General Public License as published by
  5. // the Free Software Foundation; either version 2 of the License, or
  6. // (at your option) any later version.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Text;
  19. namespace IZ.WebFileManager
  20. {
  21. [FlagsAttribute]
  22. public enum FileManagerCommandTargets
  23. {
  24. All = 0x07,
  25. File = 0x01,
  26. Directory = 0x02,
  27. Collection = 0x04,
  28. FileCollection = 0x05,
  29. DirectoryCollection = 0x06
  30. }
  31. }