namespace GZipTest { /// /// Processing module interface /// interface IProcessingModule { /// /// Indicates wether the module is processing a file /// bool IsWorking { get; } /// /// Starts the job /// /// Source file path (relative or absolute) /// Destination file path (relative or absolute) void Run(string input, string output); } }