1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-06-26 23:29:46 +00:00
reactos/irc/TechBot/TechBot.Library/Commands/Base/XmlLookupCommand.cs

18 lines
341 B
C#
Raw Normal View History

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; }
}
}
}