You've already forked linux-packaging-mono
22 lines
318 B
C#
22 lines
318 B
C#
//
|
|
// EnterpriseServicesInteropOption.cs
|
|
//
|
|
// Author:
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
|
//
|
|
// (C)2005 Novell Inc,
|
|
//
|
|
|
|
|
|
// OK, I have to say, am not interested in implementing COM dependent stuff.
|
|
|
|
namespace System.Transactions
|
|
{
|
|
public enum EnterpriseServicesInteropOption {
|
|
None,
|
|
Automatic,
|
|
Full
|
|
}
|
|
}
|
|
|