Signature fixes
[mono.git] / mcs / class / corlib / System.Runtime.Serialization.Formatters / TypeFilterLevel.cs
1 //
2 // System.Runtime.Serialization.Formatters.TypeFilterLevel.cs
3 //
4 // Author:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7 // (C) 2003 Andreas Nahr
8 //
9
10 #if NET_1_1
11
12 namespace System.Runtime.Serialization.Formatters
13 {
14         public enum TypeFilterLevel
15         {
16                 Low = 2,
17                 Full = 3
18         }
19 }
20
21 #endif