namespace StardewModdingAPI.Web.Framework.ConfigModels { /// The config settings for the log parser. internal class LogParserConfig { /********* ** Accessors *********/ /// The root URL for the log parser controller. public string SectionUrl { get; set; } /// The base URL for the Pastebin API. public string PastebinBaseUrl { get; set; } /// The user agent for the Pastebin API client, where {0} is the SMAPI version. public string PastebinUserAgent { get; set; } /// The user key used to authenticate with the Pastebin API. public string PastebinUserKey { get; set; } /// The developer key used to authenticate with the Pastebin API. public string PastebinDevKey { get; set; } } }