18 lines
526 B
C#
18 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharpChat.Protocol.IRC.ClientCommands {
|
|
public class WAllOpsCommand : IClientCommand { // think it's Supposed to be Warn ALL OPS, using this to substitute /say
|
|
public const string NAME = @"WALLOPS";
|
|
|
|
public string CommandName => NAME;
|
|
public bool RequireSession => true;
|
|
|
|
public void HandleCommand(ClientCommandContext args) {
|
|
//
|
|
}
|
|
}
|
|
}
|