blob: 218d546ceef1637e0408031ff2abc2ab0e59479b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace StardewModdingAPI.Web.Framework.LogParsing.Models
{
/// <summary>The different sections of a log.</summary>
public enum LogSection
{
/// <summary>The list of mods the user has.</summary>
ModsList,
/// <summary>The list of content packs the user has.</summary>
ContentPackList,
/// <summary>The list of mod updates SMAPI has found.</summary>
ModUpdateList
}
}
|