[tests] Separate MONO_PATH directories by PLATFORM_PATH_SEPARATOR
[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
11 namespace System.Transactions
12 {
13         public interface ISinglePhaseNotification
14                 : IEnlistmentNotification
15         {
16                 void SinglePhaseCommit (SinglePhaseEnlistment enlistment);
17         }
18 }
19