diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-01-04 22:32:23 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-01-04 22:32:23 -0500 |
commit | d804526d52e6caa3fbaf22ad043898174b0b25ae (patch) | |
tree | 39ee796b52b1452a4c37e5e71e0d3feb7717948b /src/SMAPI/Framework/Models/ModFolderExport.cs | |
parent | 93459a5e37b26cc8d742878dd993543c43f70694 (diff) | |
download | SMAPI-d804526d52e6caa3fbaf22ad043898174b0b25ae.tar.gz SMAPI-d804526d52e6caa3fbaf22ad043898174b0b25ae.tar.bz2 SMAPI-d804526d52e6caa3fbaf22ad043898174b0b25ae.zip |
remove DumpMetadata option
Diffstat (limited to 'src/SMAPI/Framework/Models/ModFolderExport.cs')
-rw-r--r-- | src/SMAPI/Framework/Models/ModFolderExport.cs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/SMAPI/Framework/Models/ModFolderExport.cs b/src/SMAPI/Framework/Models/ModFolderExport.cs deleted file mode 100644 index 3b8d451a..00000000 --- a/src/SMAPI/Framework/Models/ModFolderExport.cs +++ /dev/null @@ -1,21 +0,0 @@ -namespace StardewModdingAPI.Framework.Models -{ - /// <summary>Metadata exported to the mod folder.</summary> - internal class ModFolderExport - { - /// <summary>When the export was generated.</summary> - public string Exported { get; set; } - - /// <summary>The absolute path of the mod folder.</summary> - public string ModFolderPath { get; set; } - - /// <summary>The game version which last loaded the mods.</summary> - public string GameVersion { get; set; } - - /// <summary>The SMAPI version which last loaded the mods.</summary> - public string ApiVersion { get; set; } - - /// <summary>The detected mods.</summary> - public IModMetadata[] Mods { get; set; } - } -} |