diff options
author | danvolchek <volchek2@illinois.edu> | 2019-03-09 18:20:02 -0600 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-03-10 01:40:58 -0500 |
commit | 6cd7e11c1020c40f223dee70a7dd7b2c66296918 (patch) | |
tree | e70efb856ec211faf338c347fea11f11c36ab37e /src/SMAPI.Web/Framework/LogParsing/Models/LogSection.cs | |
parent | 810be1fbc71c7808dbdfc5210eb8816d0ad21110 (diff) | |
download | SMAPI-6cd7e11c1020c40f223dee70a7dd7b2c66296918.tar.gz SMAPI-6cd7e11c1020c40f223dee70a7dd7b2c66296918.tar.bz2 SMAPI-6cd7e11c1020c40f223dee70a7dd7b2c66296918.zip |
add log sections implementation
Diffstat (limited to 'src/SMAPI.Web/Framework/LogParsing/Models/LogSection.cs')
-rw-r--r-- | src/SMAPI.Web/Framework/LogParsing/Models/LogSection.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/SMAPI.Web/Framework/LogParsing/Models/LogSection.cs b/src/SMAPI.Web/Framework/LogParsing/Models/LogSection.cs new file mode 100644 index 00000000..218d546c --- /dev/null +++ b/src/SMAPI.Web/Framework/LogParsing/Models/LogSection.cs @@ -0,0 +1,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 + } +} |