New test.
[mono.git] / mcs / class / System.Transactions / System.Transactions / TransactionEventArgs.cs
1 //
2 // TransactionEventArgs.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 namespace System.Transactions
13 {
14         public class TransactionEventArgs : EventArgs
15         {
16                 public Transaction Transaction {
17                         get { throw new NotImplementedException (); }
18                 }
19         }
20 }
21
22 #endif