PageRenderTime 46ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/Model/SystemDiagram.cs

https://github.com/shader/QuickArch
C# | 15 lines | 14 code | 1 blank | 0 comment | 0 complexity | 685dd83a36fb922f470aafa9ed0573bf MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace QuickArch.Model
  6. {
  7. public class SystemDiagram : System
  8. {
  9. public SystemDiagram(string name, Document parent)
  10. : base(name, parent)
  11. {
  12. }
  13. }
  14. }