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

13 lines
300 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
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;
}
}
}