namespace StardewModdingAPI.Toolkit.Framework.Clients.Wiki
{
/// Metadata from the wiki's mod compatibility list.
public class WikiModList
{
/*********
** Accessors
*********/
/// The stable game version.
public string StableVersion { get; set; }
/// The beta game version (if any).
public string BetaVersion { get; set; }
/// The mods on the wiki.
public WikiModEntry[] Mods { get; set; }
}
}