13 lines
441 B
C#
13 lines
441 B
C#
|
using SharpChat.Users;
|
|||
|
using System.Net;
|
|||
|
|
|||
|
namespace SharpChat.Protocol.SockChat.Packets {
|
|||
|
public class PardonResponsePacket : BotResponsePacket {
|
|||
|
public PardonResponsePacket(IUser sender, string userName)
|
|||
|
: base(sender, BotArguments.BAN_PARDON, false, userName) { }
|
|||
|
|
|||
|
public PardonResponsePacket(IUser sender, IPAddress ipAddr)
|
|||
|
: base(sender, BotArguments.BAN_PARDON, false, ipAddr) { }
|
|||
|
}
|
|||
|
}
|