using System.Collections.Generic; using System.Windows; namespace SHJX.Service.WorkFlowEdit { public interface IPort { ICollection Links { get; } Point Center { get; } bool IsNear(Point point); Point GetEdgePoint(Point target); void UpdatePosition(); } }