2004-01-02 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / corlib / System.Security / PolicyLevelType.cs
1 //
2 // System.Security.PolicyLevelType.cs
3 //
4 // Author:
5 //   Nick Drochak(ndrochak@gol.com)
6 //
7 // (C) Nick Drochak
8 //
9
10 namespace System.Security {
11
12         [Serializable]
13         public enum PolicyLevelType {
14                 User = 0x0,
15                 Machine,
16                 Enterprise,
17                 AppDomain,
18         }
19 }