namespace StardewModdingAPI.Web.Framework.LogParsing.Models
{
/// The different sections of a log.
public enum LogSection
{
/// The list of mods the user has.
ModsList,
/// The list of content packs the user has.
ContentPackList,
/// The list of mod updates SMAPI has found.
ModUpdateList
}
}