13 lines
297 B
C#
13 lines
297 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|