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

9 lines
286 B
C#
Raw Normal View History

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