AI-Studio/app/MindWork AI Studio/Tools/FileExportFormat.cs
nilskruthoff c66a61713d
Rework of the file export (#894)
Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
2026-08-31 08:40:50 +02:00

18 lines
268 B
C#

namespace AIStudio.Tools;
/// <summary>
/// The file formats a chat message can be exported to.
/// </summary>
public enum FileExportFormat
{
NONE,
UNKNOWN,
MICROSOFT_WORD,
OPEN_DOCUMENT_TEXT,
LATEX,
MARKDOWN,
HTML,
CSV,
TSV,
}