namespace Yavsc
{
public static class ServerCommands {
public const string whois = nameof(whois);
public const string whowas = nameof(whowas);
///
/// modify a chan or an user
///
///
public const string mode = nameof(mode);
///
/// register a channel
///
///
public const string register = nameof(register);
///
/// kick some user
///
///
public const string kick = nameof(kick);
///
/// ban an user
///
///
public const string ban = nameof(ban);
}
}