using System.Collections.Generic; namespace SHJX.Service.WorkFlowEdit { public interface INode { IEnumerable<IPort> Ports { get; } } }