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 OneClick
  9.     {
  10.         private string _domain;
  11.  
  12.         public string domain
  13.         {
  14.             get { return _domain; }
  15.             set { _domain = 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. }
  35.