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

10 lines
186 B
C#

namespace SharpChat.Protocol.IRC.Replies {
public interface IReply {
public const string CRLF = "\r\n";
int ReplyCode { get; }
string GetLine();
}
}