From 525af4d229b4035d28b6f35adec0956806df08be Mon Sep 17 00:00:00 2001
From: Lamparter <71598437+Lamparter@users.noreply.github.com>
Date: Sat, 14 Dec 2024 11:38:52 +0000
Subject: [PATCH] Add translatable document types enum
---
.../DocumentTypes.cs | 42 +++++++++++++++++++
1 file changed, 42 insertions(+)
create mode 100644 src/Riverside.Markup.InteropServices/DocumentTypes.cs
diff --git a/src/Riverside.Markup.InteropServices/DocumentTypes.cs b/src/Riverside.Markup.InteropServices/DocumentTypes.cs
new file mode 100644
index 0000000..84c83b7
--- /dev/null
+++ b/src/Riverside.Markup.InteropServices/DocumentTypes.cs
@@ -0,0 +1,42 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Riverside.Markup.InteropServices
+{
+ ///
+ /// This enumeration defines the different types of documents that can be translated into Rosetta.
+ ///
+ public enum DocumentTypes
+ {
+ ///
+ /// HyperText Markup Language document.
+ ///
+ HyperText,
+
+ ///
+ /// Microsoft Word document.
+ ///
+ Word,
+
+ ///
+ /// Portable Document Format.
+ ///
+ PortableDocument,
+
+ ///
+ /// Rich Text Format document.
+ ///
+ RichText,
+
+ ///
+ /// Markdown document.
+ ///
+ Markdown,
+
+ ///
+ /// ReStructuredText document.
+ ///
+ ReStructuredText,
+ }
+}