osu/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 09:38:58 +00:00
using Newtonsoft.Json;
namespace osu.Game.Online.Multiplayer
2018-12-26 09:38:58 +00:00
{
public class APICreatedRoom : Room
{
[JsonProperty("error")]
public string Error { get; set; }
}
}