mirror of
https://github.com/ppy/osu
synced 2025-01-08 15:19:51 +00:00
13 lines
229 B
C#
13 lines
229 B
C#
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace osu.Desktop.Deploy
|
|||
|
{
|
|||
|
internal class GitHubObject
|
|||
|
{
|
|||
|
[JsonProperty(@"id")]
|
|||
|
public int Id;
|
|||
|
|
|||
|
[JsonProperty(@"name")]
|
|||
|
public string Name;
|
|||
|
}
|
|||
|
}
|