namespace StardewModdingAPI.Toolkit.Framework.Clients.Wiki { /// The compatibility status for a mod. public enum WikiCompatibilityStatus { /// The mod is compatible. Ok = 0, /// The mod is compatible if you use an optional official download. Optional = 1, /// The mod is compatible if you use an unofficial update. Unofficial = 2, /// The mod isn't compatible, but the player can fix it or there's a good alternative. Workaround = 3, /// The mod isn't compatible. Broken = 4, /// The mod is no longer maintained by the author, and an unofficial update or continuation is unlikely. Abandoned = 5, /// The mod is no longer needed and should be removed. Obsolete = 6 } }