PageRenderTime 71ms CodeModel.GetById 21ms RepoModel.GetById 7ms app.codeStats 0ms

/ViewModel/SequenceViewModel.cs

https://github.com/shader/QuickArch
C# | 18 lines | 16 code | 2 blank | 0 comment | 2 complexity | d619b7c4bfc3d488aa1bf1fee751a394 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using QuickArch.Model;
  6. namespace QuickArch.ViewModel
  7. {
  8. public class SequenceViewModel : ComponentViewModel
  9. {
  10. public SequenceViewModel(Sequence sequence) : base(sequence)
  11. {
  12. if (sequence == null)
  13. throw new ArgumentNullException("sequence");
  14. }
  15. }
  16. }