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; }
/// The paste ID.
public string PasteID { get; set; }
/*********
** Public methods
*********/
/// Construct an instance.
public LogParserModel() { }
/// Construct an instance.
/// The root URL for the log parser controller.
/// The paste ID.
public LogParserModel(string sectionUrl, string pasteID)
{
this.SectionUrl = sectionUrl;
this.PasteID = pasteID;
}
}
}