using Newtonsoft.Json; namespace StardewModdingAPI.Web.Framework.Clients.GitHub { /// The license info for a GitHub project. internal class GitLicense { /// The license display name. [JsonProperty("name")] public string Name { get; set; } /// The SPDX ID for the license. [JsonProperty("spdx_id")] public string SpdxId { get; set; } /// The URL for the license info. [JsonProperty("url")] public string Url { get; set; } } }