- Moved commands outside TechBot.Library to TechBot.Commands.Common and TechBot.Comma...
[reactos.git] / irc / TechBot / TechBot.Library / Attributes / CommandParameterAttribute.cs
index bdb3a80..f996c73 100644 (file)
@@ -13,6 +13,7 @@ namespace TechBot.Library
                private string m_name = "";
                private string m_description = "";
         private bool m_Required = true;
+        private bool m_Default = false;
                #endregion
 
                #region Public Properties
@@ -26,6 +27,12 @@ namespace TechBot.Library
 
         public bool Required { get { return m_Required; } }
 
+        public bool DefaultParameter 
+        {
+            get { return m_Default; }
+            set { m_Default = value; }
+        }
+
                #endregion
 
                #region Constructors