using System.ServiceModel;
namespace TGServiceInterface.Components
{
///
/// Used by DD to access the interop API with call()()
///
[ServiceContract]
public interface ITGInterop
{
///
/// Called from /world/ExportService(command)
///
/// The command to run
/// on success, on failure
[OperationContract]
bool InteropMessage(string command);
}
}