blob: 0d614f283911e207c4bee2cd26a53d75500faefe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace StardewModdingAPI.Toolkit.Framework.Clients.Wiki
{
/// <summary>Metadata from the wiki's mod compatibility list.</summary>
public class WikiModList
{
/*********
** Accessors
*********/
/// <summary>The stable game version.</summary>
public string StableVersion { get; set; }
/// <summary>The beta game version (if any).</summary>
public string BetaVersion { get; set; }
/// <summary>The mods on the wiki.</summary>
public WikiModEntry[] Mods { get; set; }
}
}
|