reactos/irc/TechBot/TechBot.Library/Commands/Base/XmlLookupCommand.cs
Marc Piulachs ac77d9d3a6 - Moved commands outside TechBot.Library to TechBot.Commands.Common and TechBot.Commands.MSDN except for Command base classes
- Made TechBot more configurable through .config files
- Code refactoring
- Removed automatic parameter parsing support to make everyone happy

svn path=/trunk/; revision=33586
2008-05-18 15:54:43 +00:00

17 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace TechBot.Library
{
public abstract class XmlLookupCommand : XmlCommand
{
protected string m_Text = null;
public virtual string Text
{
get { return Parameters; }
set { Parameters = value; }
}
}
}