You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
337 B

12 years ago
  1. using System;
  2. namespace Example1
  3. {
  4. internal class NotificationMessage
  5. {
  6. public string Body {
  7. get; set;
  8. }
  9. public string Icon {
  10. get; set;
  11. }
  12. public string Summary {
  13. get; set;
  14. }
  15. public override string ToString ()
  16. {
  17. return String.Format ("{0}: {1}", Summary, Body);
  18. }
  19. }
  20. }