Chat rooms

This commit is contained in:
Paul Schneider 2019-05-10 09:58:09 +01:00
commit 6ad9b82174
23 changed files with 3641 additions and 341 deletions

View file

@ -0,0 +1,33 @@
namespace Yavsc
{
public static class ServerCommands {
public const string whois = nameof(whois);
public const string whowas = nameof(whowas);
/// <summary>
/// modify a chan or an user
/// </summary>
/// <returns></returns>
public const string mode = nameof(mode);
/// <summary>
/// register a channel
/// </summary>
/// <returns></returns>
public const string register = nameof(register);
/// <summary>
/// kick some user
/// </summary>
/// <returns></returns>
public const string kick = nameof(kick);
/// <summary>
/// ban an user
/// </summary>
/// <returns></returns>
public const string ban = nameof(ban);
}
}