using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.Text; using Tango.MachineStudio.Common.Update; namespace Tango.MachineStudio.Common.Update { [ServiceContract] public interface IMachineStudioUpdateService { [OperationContract] CheckForUpdatesResponse CheckForUpdates(CheckForUpdatesRequest request); } }