sharp-chat/SharpChat.Protocol.SockChat/Packets/SilenceRevokeNotAllowedErrorPacket.cs

9 lines
305 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
using SharpChat.Users;
namespace SharpChat.Protocol.SockChat.Packets {
public class SilenceRevokeNotAllowedErrorPacket : BotResponsePacket {
public SilenceRevokeNotAllowedErrorPacket(IUser sender)
: base(sender, BotArguments.SILENCE_REVOKE_NOT_ALLOWED_ERROR, true) { }
}
}