using System.IO; using System.ServiceModel; namespace PatcherServer.Services { [ServiceContract] public interface IPatcherService { [OperationContract] long GetNewestVersion(); [OperationContract] FileTranmission GetTorrentForVersion(PatchFileRequest request); } }