8 lines
267 B
C#
8 lines
267 B
C#
using SharpChat.Users;
|
|
|
|
namespace SharpChat.Protocol.SockChat.Packets {
|
|
public class SilenceSelfErrorPacket : BotResponsePacket {
|
|
public SilenceSelfErrorPacket(IUser sender)
|
|
: base(sender, BotArguments.SILENCE_SELF_ERROR, true) { }
|
|
}
|
|
}
|