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; set; }
/// The current beta Stardew Valley version.
public string BetaVersion { get; set; }
/*********
** Public methods
*********/
/// Construct an instance.
public WikiMetadata() { }
/// 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;
}
}
}