namespace Neo.Afx.Services { /// /// Defines the requirements for an executable. /// public interface IExecutable : IWorker { /// /// Runs this instance. /// void Run(); } }