sharp-chat/SharpChat.Protocol.SockChat/Packets/GenericErrorPacket.cs
2022-08-30 17:05:29 +02:00

9 lines
254 B
C#

using SharpChat.Users;
namespace SharpChat.Protocol.SockChat.Packets {
public class GenericErrorPacket : BotResponsePacket {
public GenericErrorPacket(IUser sender)
: base(sender, BotArguments.GENERIC_ERROR, true) { }
}
}