using System; using System.Collections.Generic; using System.Text; namespace PluginInterfaces { public interface ILog { void Write(string message); } }