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

9 lines
311 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 UserNickChangePacket : BotResponsePacket {
public UserNickChangePacket(IUser sender, string oldName, string newName)
: base(sender, BotArguments.NICKNAME_CHANGE, false, oldName, newName) { }
}
}