1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace clempaul.Dreamhost.ResponseData
  7. {
  8.     public class OneClickAdvanced
  9.     {
  10.         private string _url;
  11.  
  12.         public string url
  13.         {
  14.             get { return _url; }
  15.             set { _url = value; }
  16.         }
  17.  
  18.         private string _type;
  19.  
  20.         public string type
  21.         {
  22.             get { return _type; }
  23.             set { _type = value; }
  24.         }
  25.  
  26.         private DateTime _stamp;
  27.  
  28.         public DateTime stamp
  29.         {
  30.             get { return _stamp; }
  31.             set { _stamp = value; }
  32.         }
  33.  
  34.         private bool _upgradable;
  35.  
  36.         public bool upgradable
  37.         {
  38.             get { return _upgradable; }
  39.             set { _upgradable = value; }
  40.         }
  41.  
  42.     }
  43. }
  44.