2022-10-28 15:19:15 +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.
|
|
|
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
2022-10-28 16:53:28 +08:00
|
|
|
namespace osu.Game.Online.Notifications.WebSocket
|
2022-10-28 15:19:15 +08:00
|
|
|
{
|
2022-10-28 16:53:28 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A websocket message notifying the server that the client wants to receive chat messages.
|
|
|
|
/// </summary>
|
2022-10-28 15:19:15 +08:00
|
|
|
[JsonObject(MemberSerialization.OptIn)]
|
|
|
|
public class StartChatRequest : SocketMessage
|
|
|
|
{
|
|
|
|
public StartChatRequest()
|
|
|
|
{
|
2022-10-28 15:32:17 +08:00
|
|
|
Event = @"chat.start";
|
2022-10-28 15:19:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|