namespace StardewModdingAPI.Toolkit.Framework.Clients.Wiki
{
/// Compatibility info for a mod.
public class WikiCompatibilityInfo
{
/*********
** Accessors
*********/
/// The compatibility status.
public WikiCompatibilityStatus Status { get; set; }
/// The human-readable summary of the compatibility status or workaround, without HTML formatting.
public string Summary { get; set; }
/// The game or SMAPI version which broke this mod (if applicable).
public string BrokeIn { get; set; }
/// The version of the latest unofficial update, if applicable.
public ISemanticVersion UnofficialVersion { get; set; }
/// The URL to the latest unofficial update, if applicable.
public string UnofficialUrl { get; set; }
}
}