1. namespace clempaul.Dreamhost.ResponseData
  2. {
  3.     public class DBHostname
  4.     {
  5.         private string _account_id;
  6.  
  7.         public string account_id
  8.         {
  9.             get { return _account_id; }
  10.             set { _account_id = value; }
  11.         }
  12.  
  13.         private string _domain = string.Empty;
  14.  
  15.         public string domain
  16.         {
  17.             get { return _domain; }
  18.             set { _domain = value; }
  19.         }
  20.  
  21.         private string _home;
  22.  
  23.         public string home
  24.         {
  25.             get { return _home; }
  26.             set { _home = value; }
  27.         }
  28.     }
  29. }
  30.