1. namespace clempaul.Dreamhost.ResponseData
  2. {
  3.     public class DBUser
  4.     {
  5.         private string _account_id;
  6.  
  7.         public string account_id
  8.         {
  9.             get { return _account_id; }
  10.             set { _account_id = value; }
  11.         }
  12.  
  13.         private string _db;
  14.  
  15.         public string db
  16.         {
  17.             get { return _db; }
  18.             set { _db = value; }
  19.         }
  20.  
  21.         private string _home;
  22.  
  23.         public string home
  24.         {
  25.             get { return _home; }
  26.             set { _home = value; }
  27.         }
  28.  
  29.         private string _username = string.Empty;
  30.  
  31.         public string username
  32.         {
  33.             get { return _username; }
  34.             set { _username = value; }
  35.         }
  36.  
  37.         private string _password = string.Empty;
  38.  
  39.         public string password
  40.         {
  41.             get { return _password; }
  42.             set { _password = value; }
  43.         }
  44.  
  45.         private string _host = string.Empty;
  46.  
  47.         public string host
  48.         {
  49.             get { return _host; }
  50.             set { _host = value; }
  51.         }
  52.  
  53.         private bool? _select_priv;
  54.  
  55.         public bool? select_priv
  56.         {
  57.             get { return _select_priv; }
  58.             set { _select_priv = value; }
  59.         }
  60.  
  61.         private bool? _insert_priv;
  62.  
  63.         public bool? insert_priv
  64.         {
  65.             get { return _insert_priv; }
  66.             set { _insert_priv = value; }
  67.         }
  68.  
  69.         private bool? _update_priv;
  70.  
  71.         public bool? update_priv
  72.         {
  73.             get { return _update_priv; }
  74.             set { _update_priv = value; }
  75.         }
  76.  
  77.         private bool? _delete_priv;
  78.  
  79.         public bool? delete_priv
  80.         {
  81.             get { return _delete_priv; }
  82.             set { _delete_priv = value; }
  83.         }
  84.  
  85.         private bool? _create_priv;
  86.  
  87.         public bool? create_priv
  88.         {
  89.             get { return _create_priv; }
  90.             set { _create_priv = value; }
  91.         }
  92.  
  93.         private bool? _drop_priv;
  94.  
  95.         public bool? drop_priv
  96.         {
  97.             get { return _drop_priv; }
  98.             set { _drop_priv = value; }
  99.         }
  100.  
  101.         private bool? _index_priv;
  102.  
  103.         public bool? index_priv
  104.         {
  105.             get { return _index_priv; }
  106.             set { _index_priv = value; }
  107.         }
  108.  
  109.         private bool? _alter_priv;
  110.  
  111.         public bool? alter_priv
  112.         {
  113.             get { return _alter_priv; }
  114.             set { _alter_priv = value; }
  115.         }
  116.     }
  117. }
  118.