summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/Clients/GitHub/GitRelease.cs
blob: 827374fb683281d55ac8c1ef56fb24f74ee83f9b (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
using Newtonsoft.Json;

namespace StardewModdingAPI.Web.Framework.Clients.GitHub
{
    /// <summary>A GitHub project release.</summary>
    internal class GitRelease
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The display name.</summary>
        [JsonProperty("name")]
        public string Name { get; set; }

        /// <summary>The semantic version string.</summary>
        [JsonProperty("tag_name")]
        public string Tag { get; set; }

        /// <summary>The Markdown description for the release.</summary>
        public string Body { get; set; }

        /// <summary>Whether this is a prerelease version.</summary>
        [JsonProperty("prerelease")]
        public bool IsPrerelease { get; set; }

        /// <summary>The attached files.</summary>
        public GitAsset[] Assets { get; set; }
    }
}