#nullable disable using Newtonsoft.Json; namespace StardewModdingAPI.Web.Framework.Clients.GitHub { /// Basic metadata about a GitHub project. internal class GitRepo { /// The full repository name, including the owner. [JsonProperty("full_name")] public string FullName { get; set; } /// The URL to the repository web page, if any. [JsonProperty("html_url")] public string WebUrl { get; set; } /// The code license, if any. [JsonProperty("license")] public GitLicense License { get; set; } } }