namespace StardewModdingAPI.Web.Framework.Caching.Wiki { /// The model for cached wiki metadata. internal class WikiMetadata { /********* ** Accessors *********/ /// The current stable Stardew Valley version. public string? StableVersion { get; } /// The current beta Stardew Valley version. public string? BetaVersion { get; } /********* ** Public methods *********/ /// Construct an instance. /// The current stable Stardew Valley version. /// The current beta Stardew Valley version. public WikiMetadata(string? stableVersion, string? betaVersion) { this.StableVersion = stableVersion; this.BetaVersion = betaVersion; } } }