- miscellaneous small fixes
[reactos.git] / irc / TechBot / TechBot.Library / Commands / Base / XmlLookupCommand.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace TechBot.Library
6 {
7 public abstract class XmlLookupCommand : XmlCommand
8 {
9 public virtual string Text
10 {
11 get { return Parameters; }
12 set { Parameters = value; }
13 }
14 }
15 }