mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 20:47:26 +08:00
20 lines
561 B
C#
20 lines
561 B
C#
// 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;
|
|
|
|
namespace osu.Game.Online.Notifications.WebSocket
|
|
{
|
|
/// <summary>
|
|
/// A websocket message notifying the server that the client no longer wants to receive chat messages.
|
|
/// </summary>
|
|
[JsonObject(MemberSerialization.OptIn)]
|
|
public class EndChatRequest : SocketMessage
|
|
{
|
|
public EndChatRequest()
|
|
{
|
|
Event = @"chat.end";
|
|
}
|
|
}
|
|
}
|