summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/ConfigModels/LogParserConfig.cs
blob: 18d8ff05917b9dc4023a5b9bd13892bca3b0f55e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace StardewModdingAPI.Web.Framework.ConfigModels
{
    /// <summary>The config settings for the log parser.</summary>
    internal class LogParserConfig
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The root URL for the log parser controller.</summary>
        public string SectionUrl { get; set; }

        /// <summary>The base URL for the Pastebin API.</summary>
        public string PastebinBaseUrl { get; set; }

        /// <summary>The user agent for the Pastebin API client, where {0} is the SMAPI version.</summary>
        public string PastebinUserAgent { get; set; }

        /// <summary>The developer key used to authenticate with the Pastebin API.</summary>
        public string PastebinDevKey { get; set; }
    }
}