mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 06:47:25 +08: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;
|
|||
|
}
|
|||
|
}
|