Add ability to bootstrap the releases directory using github release API.

This commit is contained in:
Dean Herbert
2017-02-13 12:31:55 +09:00
parent cef3454e9b
commit 2c95d7c67b
5 changed files with 163 additions and 24 deletions

View File

@ -0,0 +1,13 @@
using Newtonsoft.Json;
namespace osu.Desktop.Deploy
{
internal class GitHubObject
{
[JsonProperty(@"id")]
public int Id;
[JsonProperty(@"name")]
public string Name;
}
}