Drop this one too
[mono.git] / mcs / class / System.Transactions / System.Transactions / ISinglePhaseNotification.cs
1 //
2 // ISinglePhaseNotification.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 interface ISinglePhaseNotification
15                 : IEnlistmentNotification
16         {
17                 void SinglePhaseCommit (SinglePhaseEnlistment enlistment);
18         }
19 }
20
21 #endif