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

9 lines
263 B
C#

using SharpChat.Users;
namespace SharpChat.Protocol.SockChat.Packets {
public class SilenceNoticePacket : BotResponsePacket {
public SilenceNoticePacket(IUser sender)
: base(sender, BotArguments.SILENCE_PLACE_NOTICE, false) {}
}
}