9 lines
186 B
C#
9 lines
186 B
C#
namespace SharpChat.Protocol.IRC.Replies {
|
|
public interface IReply {
|
|
public const string CRLF = "\r\n";
|
|
|
|
int ReplyCode { get; }
|
|
|
|
string GetLine();
|
|
}
|
|
}
|