reorg
This commit is contained in:
parent
d000f77098
commit
40e8e08690
3487 changed files with 39 additions and 21 deletions
33
src/Yavsc.Server/ServerCommands.cs
Normal file
33
src/Yavsc.Server/ServerCommands.cs
Normal 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);
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue