2022-10-27 13:55:24 +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.
|
|
|
|
|
2024-05-30 16:37:55 +08:00
|
|
|
using System;
|
2022-10-27 13:55:24 +08:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests.Responses
|
|
|
|
{
|
|
|
|
[JsonObject(MemberSerialization.OptIn)]
|
|
|
|
public class ChatAckResponse
|
|
|
|
{
|
|
|
|
[JsonProperty("silences")]
|
2024-05-30 16:37:55 +08:00
|
|
|
public ChatSilence[] Silences { get; set; } = Array.Empty<ChatSilence>();
|
2022-10-27 13:55:24 +08:00
|
|
|
}
|
|
|
|
}
|