summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/ViewModels/ModCompatibilityModel.cs
blob: d331c093b9f7ca902abcfa5538dba3c78dc2dcd8 (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
32
33
34
using StardewModdingAPI.Toolkit.Framework.Clients.Wiki;

namespace StardewModdingAPI.Web.ViewModels
{
    /// <summary>Metadata about a mod's compatibility with the latest versions of SMAPI and Stardew Valley.</summary>
    public class ModCompatibilityModel
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The compatibility status, as a string like <c>"Broken"</c>.</summary>
        public string Status { get; set; }

        /// <summary>A link to the unofficial version which fixes compatibility, if any.</summary>
        public ModLinkModel UnofficialVersion { get; set; }

        /// <summary>The human-readable summary, as an HTML block.</summary>
        public string Summary { get; set; }


        /*********
        ** Public methods
        *********/
        /// <summary>Construct an instance.</summary>
        /// <param name="info">The mod metadata.</param>
        public ModCompatibilityModel(WikiCompatibilityInfo info)
        {
            this.Status = info.Status.ToString();
            if (info.UnofficialVersion != null)
                this.UnofficialVersion = new ModLinkModel(info.UnofficialUrl, info.UnofficialVersion.ToString());
            this.Summary = info.Summary;
        }
    }
}