2019-01-24 16:43:03 +08:00
|
|
|
// 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
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2018-12-26 17:38:58 +08:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
namespace osu.Game.Online.Rooms
|
2018-12-26 17:38:58 +08:00
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
public partial class APICreatedRoom : Room
|
2018-12-26 17:38:58 +08:00
|
|
|
{
|
|
|
|
[JsonProperty("error")]
|
|
|
|
public string Error { get; set; }
|
|
|
|
}
|
|
|
|
}
|