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

13 lines
297 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Protocol.IRC.Replies {
public class NoMotdReply : IReply {
public const int CODE = 422;
public const string LINE = @":There is no MOTD";
public int ReplyCode => CODE;
public string GetLine() {
return LINE;
}
}
}