1. using System;
  2.  
  3. namespace clempaul.Dreamhost
  4. {
  5.     internal class QueryData
  6.     {
  7.  
  8.         #region Constructor
  9.  
  10.         internal QueryData(string key, string value)
  11.         {
  12.             this.key = key;
  13.             this.value = value;
  14.         }
  15.  
  16.         #endregion
  17.  
  18.         #region Internal Variables
  19.  
  20.         private string key = String.Empty;
  21.         private string value = String.Empty;
  22.  
  23.         #endregion
  24.  
  25.         #region Accessors
  26.  
  27.         internal string Key
  28.         {
  29.             get { return this.key; }
  30.             set { this.key = value; }
  31.         }
  32.  
  33.         internal string Value
  34.         {
  35.             get { return this.value; }
  36.             set { this.value = value; }
  37.         }
  38.  
  39.         #endregion
  40.  
  41.     }
  42. }
  43.