1. using System;
  2.  
  3. namespace clempaul.Dreamhost.ResponseData
  4. {
  5.     class PendingPS
  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 _ip;
  16.  
  17.         public string ip
  18.         {
  19.             get { return _ip; }
  20.             set { _ip = 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 DateTime _stamp;
  32.  
  33.         public DateTime stamp
  34.         {
  35.             get { return _stamp; }
  36.             set { _stamp = value; }
  37.         }
  38.  
  39.     }
  40. }
  41.