1. using System;
  2.  
  3. namespace clempaul.Dreamhost.ResponseData
  4. {
  5.     class ActivePS
  6.     {
  7.         private string _account_id;
  8.  
  9.         public string account_id
  10.         {
  11.             get { return _account_id; }
  12.             set { _account_id = value; }
  13.         }
  14.  
  15.         private string _ps;
  16.  
  17.         public string ps
  18.         {
  19.             get { return _ps; }
  20.             set { _ps = value; }
  21.         }
  22.  
  23.         private string _type;
  24.  
  25.         public string type
  26.         {
  27.             get { return _type; }
  28.             set { _type = value; }
  29.         }
  30.  
  31.         private int _memory_mb;
  32.  
  33.         public int memory_mb
  34.         {
  35.             get { return _memory_mb; }
  36.             set { _memory_mb = value; }
  37.         }
  38.  
  39.         private DateTime _start_date;
  40.  
  41.         public DateTime start_date
  42.         {
  43.             get { return _start_date; }
  44.             set { _start_date = value; }
  45.         }
  46.  
  47.     }
  48. }
  49.