2018-01-05 11:21:19 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-03-08 06:50:52 +00:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
2017-02-13 03:31:55 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Desktop.Deploy
|
|
|
|
|
{
|
2017-03-09 05:24:16 +00:00
|
|
|
|
public class GitHubObject
|
2017-02-13 03:31:55 +00:00
|
|
|
|
{
|
|
|
|
|
[JsonProperty(@"id")]
|
|
|
|
|
public int Id;
|
|
|
|
|
|
|
|
|
|
[JsonProperty(@"name")]
|
|
|
|
|
public string Name;
|
|
|
|
|
}
|
2018-01-05 11:21:19 +00:00
|
|
|
|
}
|