/ViewModel/TemporaryConnectorViewModel.cs
https://github.com/shader/QuickArch · C# · 23 lines · 18 code · 5 blank · 0 comment · 0 complexity · 5a13ea3f17cc85474d00acf19645d694 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace QuickArch.ViewModel
- {
- public class TemporaryConnectorViewModel : ComponentViewModel
- {
- public TemporaryConnectorViewModel(SystemViewModel start) : base(null)
- {
- Start = start;
- }
-
- public SystemViewModel Start { get; set; }
-
- public System.Windows.Point StartPostion { get; set; }
-
- public SystemViewModel End { get; set; }
-
- public System.Windows.Point EndPosition { get; set; }
- }
- }