using System.Diagnostics.CodeAnalysis; namespace Umbraco.Cms.Core.DynamicRoot.QuerySteps; public interface IDynamicRootQueryStep { Task>> ExecuteAsync(ICollection origins, DynamicRootQueryStep filter); string SupportedDirectionAlias { get; } }