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