sharp-chat/SharpChat.Protocol.IRC/Replies/YouAreBannedReply.cs
2022-08-30 17:05:29 +02:00

20 lines
473 B
C#

using System;
namespace SharpChat.Protocol.IRC.Replies {
public class YouAreBannedReply : Reply {
public const int CODE = 465;
public override int ReplyCode => CODE;
private string Reason { get; }
public YouAreBannedReply(string reason) {
Reason = reason ?? throw new ArgumentNullException(nameof(reason));
}
protected override string BuildLine() {
return $@":{Reason}";
}
}
}