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