2020-02-27 18:23:21 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-07-22 17:29:50 +08:00
|
|
|
using osu.Game.Online.API;
|
2020-02-27 18:23:21 +08:00
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
namespace osu.Game.Online.Rooms
|
2020-02-27 18:23:21 +08:00
|
|
|
{
|
|
|
|
public class GetRoomRequest : APIRequest<Room>
|
|
|
|
{
|
2021-02-16 18:29:40 +08:00
|
|
|
public readonly long RoomId;
|
2020-02-27 18:23:21 +08:00
|
|
|
|
2021-02-16 18:29:40 +08:00
|
|
|
public GetRoomRequest(long roomId)
|
2020-02-27 18:23:21 +08:00
|
|
|
{
|
2020-12-19 00:22:52 +08:00
|
|
|
RoomId = roomId;
|
2020-02-27 18:23:21 +08:00
|
|
|
}
|
|
|
|
|
2020-12-19 00:22:52 +08:00
|
|
|
protected override string Target => $"rooms/{RoomId}";
|
2020-02-27 18:23:21 +08:00
|
|
|
}
|
|
|
|
}
|