- Forgot this file for msvc build
[reactos.git] / irc / TechBot / TechBot.IRCLibrary / IRC.cs
1 using System;
2
3 namespace TechBot.IRCLibrary
4 {
5 /// <summary>
6 /// IRC constants and helper methods.
7 /// </summary>
8 public class IRC
9 {
10 #region IRC commands
11
12 public const string JOIN = "JOIN";
13 public const string NICK = "NICK";
14 public const string PART = "PART";
15 public const string PING = "PING";
16 public const string PONG = "PONG";
17 public const string PRIVMSG = "PRIVMSG";
18 public const string USER = "USER";
19 public const string PASS = "PASS";
20
21 public const string RPL_NAMREPLY = "353";
22 public const string RPL_ENDOFNAMES = "366";
23
24 #endregion
25
26 }
27 }