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

9 lines
311 B
C#
Raw Normal View History

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