DocumentParserInfo.cs 307 B

12345678910111213
  1. using System;
  2. using PixiEditor.Parser;
  3. namespace PixiEditor.SDK.FileParsers
  4. {
  5. internal class DocumentParserInfo : FileParserInfo<DocumentParser, SerializableDocument>
  6. {
  7. public DocumentParserInfo(Type documentParserType)
  8. : base(documentParserType)
  9. {
  10. }
  11. }
  12. }