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