PageRenderTime 40ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/ViewModel/TemporaryConnectorViewModel.cs

https://github.com/shader/QuickArch
C# | 23 lines | 18 code | 5 blank | 0 comment | 0 complexity | 5a13ea3f17cc85474d00acf19645d694 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace QuickArch.ViewModel
  6. {
  7. public class TemporaryConnectorViewModel : ComponentViewModel
  8. {
  9. public TemporaryConnectorViewModel(SystemViewModel start) : base(null)
  10. {
  11. Start = start;
  12. }
  13. public SystemViewModel Start { get; set; }
  14. public System.Windows.Point StartPostion { get; set; }
  15. public SystemViewModel End { get; set; }
  16. public System.Windows.Point EndPosition { get; set; }
  17. }
  18. }