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