New test.
[mono.git] / mcs / class / System.Transactions / System.Transactions / EnterpriseServicesInteropOption.cs
1 //
2 // EnterpriseServicesInteropOption.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // (C)2005 Novell Inc,
8 //
9
10 #if NET_2_0
11
12 // OK, I have to say, am not interested in implementing COM dependent stuff.
13
14 namespace System.Transactions
15 {
16         public enum EnterpriseServicesInteropOption {
17                 None,
18                 Automatic,
19                 Full
20         }
21 }
22
23 #endif