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

9 lines
313 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 ChannelNotFoundErrorPacket : BotResponsePacket {
public ChannelNotFoundErrorPacket(IUser sender, string channelName)
: base(sender, BotArguments.CHANNEL_NOT_FOUND_ERROR, true, channelName) { }
}
}