2006-01-24 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.AccessControl / AccessControlActions.cs
index 1754f20449fea38c289f1bb6773211bbe43e1af8..823cc38441c7f211c0220c2bd1a949713450654d 100644 (file)
@@ -4,7 +4,7 @@
 // Author:
 //     Sebastien Pouliot  <sebastien@ximian.com>
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2006 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 
 #if NET_2_0
 
-using System;
-using System.Runtime.InteropServices;
-
 namespace System.Security.AccessControl {
 
        [Flags]
-       [Serializable]
-       [ComVisibleAttribute (true)]
        public enum AccessControlActions {
-               None,
-               View,
-               Change
+               None = 0,
+               View = 1,
+               Change = 2
        }
 }