sharp-chat/SharpChat.Protocol.IRC/Replies/InfoReply.cs

13 lines
400 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Protocol.IRC.Replies {
public class InfoReply : Reply {
public const int CODE = 371;
public const string LINE = @":Isn't it adorable when a spec marks something as REQUIRED but then gives no implementation details?";
public override int ReplyCode => CODE;
protected override string BuildLine() {
return LINE;
}
}
}