using System.Windows; namespace SHJX.Service.WorkFlowEdit { public interface ILink { IPort Source { get; set; } IPort Target { get; set; } Point? SourcePoint { get; set; } Point? TargetPoint { get; set; } void UpdatePath(); } }