ILink.cs 285 B

1234567891011121314
  1. using System.Windows;
  2. namespace SHJX.Service.WorkFlowEdit
  3. {
  4. public interface ILink
  5. {
  6. IPort Source { get; set; }
  7. IPort Target { get; set; }
  8. Point? SourcePoint { get; set; }
  9. Point? TargetPoint { get; set; }
  10. void UpdatePath();
  11. }
  12. }