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

10 lines
186 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Protocol.IRC.Replies {
public interface IReply {
public const string CRLF = "\r\n";
int ReplyCode { get; }
string GetLine();
}
}