blob: c04de4a5518539b24f85699934fffd8378dfef34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
namespace StardewModdingAPI.Web.Framework.Caching.Wiki
{
/// <summary>The model for cached wiki metadata.</summary>
internal class WikiMetadata
{
/*********
** Accessors
*********/
/// <summary>The current stable Stardew Valley version.</summary>
public string StableVersion { get; set; }
/// <summary>The current beta Stardew Valley version.</summary>
public string BetaVersion { get; set; }
/*********
** Public methods
*********/
/// <summary>Construct an instance.</summary>
public WikiMetadata() { }
/// <summary>Construct an instance.</summary>
/// <param name="stableVersion">The current stable Stardew Valley version.</param>
/// <param name="betaVersion">The current beta Stardew Valley version.</param>
public WikiMetadata(string stableVersion, string betaVersion)
{
this.StableVersion = stableVersion;
this.BetaVersion = betaVersion;
}
}
}
|