PageRenderTime 38ms CodeModel.GetById 7ms RepoModel.GetById 1ms app.codeStats 0ms

/Model/Sequence.cs

https://github.com/shader/QuickArch
C# | 25 lines | 21 code | 4 blank | 0 comment | 0 complexity | 65c3912e5586d2fd6642113261c24ba6 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Xml.Linq;
  6. namespace QuickArch.Model
  7. {
  8. public class Sequence : Component
  9. {
  10. public Sequence(XElement source) : this(source, null) { }
  11. public Sequence(XElement source, System parent)
  12. {
  13. }
  14. public override void Save()
  15. {
  16. }
  17. public override void Save(XElement parent)
  18. {
  19. }
  20. }
  21. }