1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-16 23:43:27 +08:00
Files
osu-lazer/osu.Desktop.Deploy/GitHubObject.cs
T

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;
}
}