summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/ViewModels/LogViewFormat.cs
blob: 7ef79319c94199a85f4fe38d6a2898e4b3bcfd1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
    }
}