13 lines
260 B
C#
13 lines
260 B
C#
|
using SharpChat.Users;
|
|||
|
|
|||
|
namespace SharpChat.Protocol.IRC.ServerCommands {
|
|||
|
public interface IServerCommand {
|
|||
|
public const string CRLF = "\r\n";
|
|||
|
|
|||
|
string CommandName { get; }
|
|||
|
IUser Sender { get; }
|
|||
|
|
|||
|
string GetLine();
|
|||
|
}
|
|||
|
}
|