1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 22:07:28 +08:00
osu-lazer/osu.Game/Online/Multiplayer/APICreatedRoom.cs

14 lines
341 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-12-26 17:38:58 +08:00
using Newtonsoft.Json;
namespace osu.Game.Online.Multiplayer
2018-12-26 17:38:58 +08:00
{
public class APICreatedRoom : Room
{
[JsonProperty("error")]
public string Error { get; set; }
}
}