summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/ViewModels
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI.Web/ViewModels')
-rw-r--r--src/SMAPI.Web/ViewModels/LogViewFormat.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/SMAPI.Web/ViewModels/LogViewFormat.cs b/src/SMAPI.Web/ViewModels/LogViewFormat.cs
new file mode 100644
index 00000000..7ef79319
--- /dev/null
+++ b/src/SMAPI.Web/ViewModels/LogViewFormat.cs
@@ -0,0 +1,15 @@
+namespace StardewModdingAPI.Web.ViewModels
+{
+ /// <summary>How a log file should be displayed.</summary>
+ public enum LogViewFormat
+ {
+ /// <summary>Render a parsed log and metadata.</summary>
+ Default,
+
+ /// <summary>Render a raw log with parsed metadata.</summary>
+ RawView,
+
+ /// <summary>Render directly as a text file.</summary>
+ RawDownload
+ }
+}