using System.Collections.Generic; namespace T3.Core.Operator.Slots; public interface IExtractedInput { public Slot OutputSlot { get; } public void SetTypedInputValuesTo(T value, out IEnumerable changedSlots); }