mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 03:37:35 +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;
|
|
}
|
|
} |