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 DestroyResult
  9.     {
  10.         private string _database;
  11.  
  12.         public string database
  13.         {
  14.             get { return _database; }
  15.             set { _database = value; }
  16.         }
  17.  
  18.         private string _prefix;
  19.  
  20.         public string prefix
  21.         {
  22.             get { return _prefix; }
  23.             set { _prefix = value; }
  24.         }
  25.  
  26.     }
  27. }
  28.