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