summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/ConfigModels/ContextConfig.cs
blob: 117462f4af4817f4da4ed7e167a925d573dcc586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StardewModdingAPI.Web.Framework.ConfigModels
{
    /// <summary>The config settings for the app context.</summary>
    public class ContextConfig // must be public to pass into views
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The root URL for the app.</summary>
        public string RootUrl { get; set; }

        /// <summary>The root URL for the log parser.</summary>
        public string LogParserUrl { get; set; }
    }
}