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

13 lines
300 B
C#

namespace SharpChat.Protocol.IRC.Replies {
public class EndOfInfoReply : IReply {
public const int CODE = 374;
public const string LINE = @":End of INFO list";
public int ReplyCode => CODE;
public string GetLine() {
return LINE;
}
}
}