19 lines
540 B
C#
19 lines
540 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 NoticeCommand : IClientCommand {
|
|
public const string NAME = @"NOTICE";
|
|
|
|
public string CommandName => NAME;
|
|
public bool RequireSession => true;
|
|
|
|
public void HandleCommand(ClientCommandContext args) {
|
|
// like privmsg but autoreplies should not be sent
|
|
// should this be supported?
|
|
}
|
|
}
|
|
}
|