// Copyright (c) ppy Pty Ltd . 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 { /// /// A websocket message notifying the server that the client no longer wants to receive chat messages. /// [JsonObject(MemberSerialization.OptIn)] public class EndChatRequest : SocketMessage { public EndChatRequest() { Event = @"chat.end"; } } }