namespace StardewModdingAPI.Framework.Models { /// Metadata exported to the mod folder. internal class ModFolderExport { /// When the export was generated. public string Exported { get; set; } /// The absolute path of the mod folder. public string ModFolderPath { get; set; } /// The game version which last loaded the mods. public string GameVersion { get; set; } /// The SMAPI version which last loaded the mods. public string ApiVersion { get; set; } /// The detected mods. public IModMetadata[] Mods { get; set; } } }