using System.ServiceModel; namespace PatcherServer.Services { // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IAdminService" in both code and config file together. [ServiceContract] public interface IAdminService { [OperationContract] void DeployPatch(FileTranmission info); [OperationContract] void BannByUsername(string username); [OperationContract] void BannByCharacterName(string characterName); [OperationContract] void BannMac(string mac); [OperationContract] void SetHashes(string hashes); [OperationContract] void WhitelistUser(string username); [OperationContract] void BlacklistUser(string username); [OperationContract] void UnWhitelistUser(string username); [OperationContract] void UnBlacklistUser(string username); [OperationContract] void RestUserMacs(string username); } }