using System.Collections.Generic; using Gallium; namespace Nitride { public interface INitrideOperation { /// /// Runs the input entities through the operation and returns the results. /// /// /// IEnumerable Run(IEnumerable input); } }