mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 15:10:53 +00:00
27 lines
563 B
C#
27 lines
563 B
C#
|
using System;
|
||
|
|
||
|
namespace TechBot.IRCLibrary
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// IRC constants and helper methods.
|
||
|
/// </summary>
|
||
|
public class IRC
|
||
|
{
|
||
|
#region IRC commands
|
||
|
|
||
|
public const string JOIN = "JOIN";
|
||
|
public const string NICK = "NICK";
|
||
|
public const string PART = "PART";
|
||
|
public const string PING = "PING";
|
||
|
public const string PONG = "PONG";
|
||
|
public const string PRIVMSG = "PRIVMSG";
|
||
|
public const string USER = "USER";
|
||
|
|
||
|
public const string RPL_NAMREPLY = "353";
|
||
|
public const string RPL_ENDOFNAMES = "366";
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
}
|
||
|
}
|