using System; namespace RevolutionaryStuff.P2P.Basics { public interface IAppCommand { void DoCommand(object sender, string source, string command); } }