1. namespace clempaul.Dreamhost.ResponseData
  2. {
  3.     public class User
  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 _username;
  14.  
  15.         public string username
  16.         {
  17.             get { return _username; }
  18.             set { _username = value; }
  19.         }
  20.  
  21.         private string _type;
  22.  
  23.         public string type
  24.         {
  25.             get { return _type; }
  26.             set { _type = value; }
  27.         }
  28.  
  29.         private string _shell;
  30.  
  31.         public string shell
  32.         {
  33.             get { return _shell; }
  34.             set { _shell = value; }
  35.         }
  36.  
  37.         private string _home;
  38.  
  39.         public string home
  40.         {
  41.             get { return _home; }
  42.             set { _home = value; }
  43.         }
  44.  
  45.         private string _password;
  46.  
  47.         public string password
  48.         {
  49.             get { return _password; }
  50.             set { _password = value; }
  51.         }
  52.  
  53.         private double _disk_user_mb;
  54.  
  55.         public double disk_user_mb
  56.         {
  57.             get { return _disk_user_mb; }
  58.             set { _disk_user_mb = value; }
  59.         }
  60.  
  61.         private double _quota_mb;
  62.  
  63.         public double quota_mb
  64.         {
  65.             get { return _quota_mb; }
  66.             set { _quota_mb = value; }
  67.         }
  68.  
  69.         private string _gecos;
  70.  
  71.         public string gecos
  72.         {
  73.             get { return _gecos; }
  74.             set { _gecos = value; }
  75.         }
  76.     }
  77. }
  78.