summaryrefslogtreecommitdiff
path: root/src/SMAPI.Toolkit/Framework/Clients/Wiki/WikiModList.cs
blob: 1787197ada8a37c3ec0e0f63d19d4604bd4cf370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#nullable disable

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; }
    }
}