1. namespace clempaul.Dreamhost.ResponseData
  2. {
  3.     public class MailFilter
  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 _address;
  14.  
  15.         public string address
  16.         {
  17.             get { return _address; }
  18.             set { _address = value; }
  19.         }
  20.  
  21.         private int? _rank = null;
  22.  
  23.         public int? rank
  24.         {
  25.             get { return _rank; }
  26.             set { _rank = value; }
  27.         }
  28.  
  29.         private string _filter;
  30.  
  31.         public string filter
  32.         {
  33.             get { return _filter; }
  34.             set { _filter = value; }
  35.         }
  36.  
  37.         private string _filter_on;
  38.  
  39.         public string filter_on
  40.         {
  41.             get { return _filter_on; }
  42.             set { _filter_on = value; }
  43.         }
  44.  
  45.         private string _action;
  46.  
  47.         public string action
  48.         {
  49.             get { return _action; }
  50.             set { _action = value; }
  51.         }
  52.  
  53.         private string _action_value;
  54.  
  55.         public string action_value
  56.         {
  57.             get { return _action_value; }
  58.             set { _action_value = value; }
  59.         }
  60.  
  61.         private bool? _contains = null;
  62.  
  63.         public bool? contains
  64.         {
  65.             get { return _contains; }
  66.             set { _contains = value; }
  67.         }
  68.  
  69.         private bool? _stop = null;
  70.  
  71.         public bool? stop
  72.         {
  73.             get { return _stop; }
  74.             set { _stop = value; }
  75.         }
  76.  
  77.     }
  78. }
  79.