blob: 7b7269d23c8abe146636b9a7ea5e82a3f78bd78c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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);
}
}
|