blob: 198274b23c3d9d0618cad00b6e3c57f3a868baae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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; }
}
}
|