mirror of
https://github.com/reactos/reactos.git
synced 2025-05-01 19:50:36 +00:00

- add support for preventing all commands to be run on the channel by default. Now TechBot only answers some of the commands in PM - add back the error Command svn path=/trunk/; revision=34079
15 lines
300 B
C#
15 lines
300 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace TechBot.Library
|
|
{
|
|
public abstract class XmlLookupCommand : XmlCommand
|
|
{
|
|
public virtual string Text
|
|
{
|
|
get { return Parameters; }
|
|
set { Parameters = value; }
|
|
}
|
|
}
|
|
}
|