namespace StardewModdingAPI.Web.ViewModels { /// The view model for the log parser page. public class LogParserModel { /********* ** Accessors *********/ /// The root URL for the log parser controller. public string SectionUrl { get; set; } /********* ** Public methods *********/ /// Construct an instance. public LogParserModel() { } /// Construct an instance. /// The root URL for the log parser controller. public LogParserModel(string sectionUrl) { this.SectionUrl = sectionUrl; } } }