summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/Clients/UpdateManifest/UpdateManifestModModel.cs
blob: 926423217e623e99bc55102c3516b9f77e127f98 (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
// Copyright 2022 Jamie Taylor
namespace StardewModdingAPI.Web.Framework.Clients.UpdateManifest
{
    /// <summary>The data model for a mod in an update manifest file.</summary>
    internal class UpdateManifestModModel
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The mod's name.</summary>
        public string? Name { get; }

        /// <summary>The mod page URL from which to download updates.</summary>
        public string? Url { get; }

        /// <summary>The available versions for this mod.</summary>
        public UpdateManifestVersionModel[]? Versions { get; }


        /*********
        ** Public methods
        *********/
        /// <summary>Construct an instance.</summary>
        /// <param name="name">The mod's name.</param>
        /// <param name="url">The mod page URL from which to download updates.</param>
        /// <param name="versions">The available versions for this mod.</param>
        public UpdateManifestModModel(string? name, string? url, UpdateManifestVersionModel[]? versions)
        {
            this.Name = name;
            this.Url = url;
            this.Versions = versions;
        }
    }
}