namespace StardewModdingAPI.Web.Framework { /// The mod availability status on a remote site. internal enum RemoteModStatus { /// The mod is valid. Ok, /// The mod data was fetched, but the data is not valid (e.g. version isn't semantic). InvalidData, /// The mod does not exist. DoesNotExist, /// The mod page exists, but it requires a subkey and none was provided. RequiredSubkeyMissing, /// The mod was temporarily unavailable (e.g. the site could not be reached or an unknown error occurred). TemporaryError } }