Skip to content

Commit

Permalink
Add translatable document types enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamparter committed Dec 14, 2024
1 parent 77264b9 commit 525af4d
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions src/Riverside.Markup.InteropServices/DocumentTypes.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Riverside.Markup.InteropServices
{
/// <summary>
/// This enumeration defines the different types of documents that can be translated into Rosetta.
/// </summary>
public enum DocumentTypes
{
/// <summary>
/// HyperText Markup Language document.
/// </summary>
HyperText,

/// <summary>
/// Microsoft Word document.
/// </summary>
Word,

/// <summary>
/// Portable Document Format.
/// </summary>
PortableDocument,

/// <summary>
/// Rich Text Format document.
/// </summary>
RichText,

/// <summary>
/// Markdown document.
/// </summary>
Markdown,

/// <summary>
/// ReStructuredText document.
/// </summary>
ReStructuredText,
}
}

0 comments on commit 525af4d

Please sign in to comment.