You've already forked linux-packaging-mono
19 lines
218 B
C#
19 lines
218 B
C#
|
|
//
|
||
|
|
// ITransactionPromoter.cs
|
||
|
|
//
|
||
|
|
// Author:
|
||
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
||
|
|
//
|
||
|
|
// (C)2005 Novell Inc,
|
||
|
|
//
|
||
|
|
|
||
|
|
|
||
|
|
namespace System.Transactions
|
||
|
|
{
|
||
|
|
public interface ITransactionPromoter
|
||
|
|
{
|
||
|
|
byte [] Promote ();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|