/Model/SystemDiagram.cs
https://github.com/shader/QuickArch · C# · 15 lines · 14 code · 1 blank · 0 comment · 0 complexity · 685dd83a36fb922f470aafa9ed0573bf MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace QuickArch.Model
- {
- public class SystemDiagram : System
- {
- public SystemDiagram(string name, Document parent)
- : base(name, parent)
- {
- }
- }
- }