1. namespace clempaul.Dreamhost.ResponseData
  2. {
  3.     public class DNSRecord
  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.         private string _zone;
  13.  
  14.         public string zone
  15.         {
  16.             get { return _zone; }
  17.             set { _zone = value; }
  18.         }
  19.         private string _type = string.Empty;
  20.  
  21.         public string type
  22.         {
  23.             get { return _type; }
  24.             set { _type = value; }
  25.         }
  26.         private string _value = string.Empty;
  27.  
  28.         public string value
  29.         {
  30.             get { return _value; }
  31.             set { _value = value; }
  32.         }
  33.         private string _comment = string.Empty;
  34.  
  35.         public string comment
  36.         {
  37.             get { return _comment; }
  38.             set { _comment = value; }
  39.         }
  40.         private bool _editable;
  41.  
  42.         public bool editable
  43.         {
  44.             get { return _editable; }
  45.             set { _editable = value; }
  46.         }
  47.  
  48.         private string _record = string.Empty;
  49.  
  50.         public string record
  51.         {
  52.             get { return _record; }
  53.             set { _record = value; }
  54.         }
  55.  
  56.  
  57.  
  58.     }
  59. }
  60.