1. using System;
  2.  
  3. namespace clempaul.Dreamhost.ResponseData
  4. {
  5.     public class Announcement
  6.     {
  7.         private string _subject = string.Empty;
  8.  
  9.         public string subject
  10.         {
  11.             get { return _subject; }
  12.             set { _subject = value; }
  13.         }
  14.  
  15.         private string _message = string.Empty;
  16.  
  17.         public string message
  18.         {
  19.             get { return _message; }
  20.             set { _message = value; }
  21.         }
  22.  
  23.         private DateTime? _stamp = null;
  24.  
  25.         public DateTime? stamp
  26.         {
  27.             get { return _stamp; }
  28.             set { _stamp = value; }
  29.         }
  30.  
  31.         private string _charset = string.Empty;
  32.  
  33.         public string charset
  34.         {
  35.             get { return _charset; }
  36.             set { _charset = value; }
  37.         }
  38.  
  39.         private string _type = string.Empty;
  40.  
  41.         public string type
  42.         {
  43.             get { return _type; }
  44.             set { _type = value; }
  45.         }
  46.  
  47.         private bool? _duplicate_ok = null;
  48.  
  49.         public bool? duplicate_ok
  50.         {
  51.             get { return _duplicate_ok; }
  52.             set { _duplicate_ok = value; }
  53.         }
  54.     }
  55. }
  56.