1. namespace clempaul.Dreamhost.ResponseData
  2. {
  3.     public class Domain
  4.     {
  5.         #region Private Variables
  6.  
  7.         private string _account_id = string.Empty;
  8.         private string _domain = string.Empty;
  9.         private string _home = string.Empty;
  10.         private string _type = string.Empty;
  11.         private string _unique_ip = string.Empty;
  12.         private string _hosting_type = string.Empty;
  13.         private string _user = string.Empty;
  14.         private string _path = string.Empty;
  15.         private string _outside_url = string.Empty;
  16.         private string _www_or_not = string.Empty;
  17.         private string _php = string.Empty;
  18.         private bool _security = false;
  19.         private bool _fastcgi = false;
  20.         private bool _xcache = false;
  21.         private bool _php_fcgid = false;
  22.         private bool _passenger = false;
  23.  
  24.         #endregion
  25.  
  26.         #region Accessors
  27.  
  28.         public string account_id
  29.         {
  30.             get { return this._account_id; }
  31.             set { this._account_id = value; }
  32.         }
  33.  
  34.         public string domain
  35.         {
  36.             get { return this._domain; }
  37.             set { this._domain = value; }
  38.         }
  39.  
  40.         public string home
  41.         {
  42.             get { return this._home; }
  43.             set { this._home = value; }
  44.         }
  45.  
  46.         public string type
  47.         {
  48.             get { return this._type; }
  49.             set { this._type = value; }
  50.         }
  51.  
  52.         public string unique_ip
  53.         {
  54.             get { return this._unique_ip; }
  55.             set { this._unique_ip = value; }
  56.         }
  57.  
  58.         public string user
  59.         {
  60.             get { return this._user; }
  61.             set { this._user = value; }
  62.         }
  63.  
  64.         public string path
  65.         {
  66.             get { return this._path; }
  67.             set { this._path = value; }
  68.         }
  69.  
  70.         public string outside_url
  71.         {
  72.             get { return this._outside_url; }
  73.             set { this._outside_url = value; }
  74.         }
  75.  
  76.         public string hosting_type
  77.         {
  78.             get { return this._hosting_type; }
  79.             set { this._hosting_type = value; }
  80.         }
  81.  
  82.         public string www_or_not
  83.         {
  84.             get { return this._www_or_not; }
  85.             set { this._www_or_not = value; }
  86.         }
  87.  
  88.         public string php
  89.         {
  90.             get { return this._php; }
  91.             set { this._php = value; }
  92.         }
  93.  
  94.         public bool security
  95.         {
  96.             get { return this._security; }
  97.             set { this._security = value; }
  98.         }
  99.  
  100.         public bool fastcgi
  101.         {
  102.             get { return this._fastcgi; }
  103.             set { this._fastcgi = value; }
  104.         }
  105.  
  106.         public bool xcache
  107.         {
  108.             get { return this._xcache; }
  109.             set { this._xcache = value; }
  110.         }
  111.  
  112.         public bool php_fcgid
  113.         {
  114.             get { return this._php_fcgid; }
  115.             set { this._php_fcgid = value; }
  116.         }
  117.  
  118.         public bool passenger
  119.         {
  120.             get { return this._passenger; }
  121.             set { this._passenger = value; }
  122.         }
  123.  
  124.         #endregion
  125.  
  126.     }
  127. }
  128.