namespace StardewModdingAPI.Web.Framework.ConfigModels
{
/// The config settings for the app context.
public class ContextConfig // must be public to pass into views
{
/*********
** Accessors
*********/
/// The root URL for the app.
public string RootUrl { get; set; }
/// The root URL for the log parser.
public string LogParserUrl { get; set; }
}
}