using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.Text; namespace PatcherServer.Services { [ServiceContract] public interface ILauncherService { [OperationContract] bool MACAllowed(string mac); [OperationContract] bool UserAllowed(string username, string password); [OperationContract] bool UserMacAllowed(string username, string mac); [OperationContract] string GetHashes(); } }