9 lines
311 B
C#
9 lines
311 B
C#
|
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) { }
|
|||
|
}
|
|||
|
}
|