namespace StardewModdingAPI.Web.Framework.Clients.Nexus { /// The status of a Nexus mod. internal enum NexusModStatus { /// The mod is published and valid. Ok, /// The mod is hidden by the author. Hidden, /// The mod hasn't been published yet. NotPublished, /// The mod contains adult content which is hidden for anonymous web users. AdultContentForbidden, /// The Nexus API returned an unhandled error. Other } }