mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 01:07:25 +08:00
05a014958f
Uses AppSettings to allow for secret storage.
25 lines
528 B
C#
25 lines
528 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace osu.Desktop.Deploy
|
|
{
|
|
internal class GitHubRelease
|
|
{
|
|
[JsonProperty(@"id")]
|
|
public int Id;
|
|
|
|
[JsonProperty(@"tag_name")]
|
|
public string TagName => $"v{Name}";
|
|
|
|
[JsonProperty(@"name")]
|
|
public string Name;
|
|
|
|
[JsonProperty(@"draft")]
|
|
public bool Draft;
|
|
|
|
[JsonProperty(@"prerelease")]
|
|
public bool PreRelease;
|
|
|
|
[JsonProperty(@"upload_url")]
|
|
public string UploadUrl;
|
|
}
|
|
} |