PageRenderTime 46ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/Model/Document.cs

https://github.com/shader/QuickArch
C# | 15 lines | 14 code | 1 blank | 0 comment | 0 complexity | aedcc78ed061d823b935ad9374ccdd02 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 Document : System
  8. {
  9. public Document(string name)
  10. : base(name, null)
  11. {
  12. }
  13. }
  14. }