Winify – Diff between revs 59 and 67

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 59 Rev 67
Line 1... Line 1...
1 using System; 1 using System;
2 using System.Drawing; 2 using System.Drawing;
Line 3... Line 3...
3   3  
4 namespace Winify.Gotify 4 namespace Winify.Gotify
5 { 5 {
6 public class GotifyNotificationEventArgs : EventArgs 6 public class GotifyMessageEventArgs : EventArgs
7 { 7 {
Line 8... Line 8...
8 #region Constructors, Destructors and Finalizers 8 #region Constructors, Destructors and Finalizers
9   9  
10 public GotifyNotificationEventArgs(GotifyMessage notification, Image image) 10 public GotifyMessageEventArgs(GotifyMessage message, Image image)
11 { 11 {
12 Notification = notification; 12 Message = message;
Line 13... Line 13...
13 Image = image; 13 Image = image;
Line 14... Line 14...
14 } 14 }
Line 15... Line 15...
15   15  
Line 16... Line 16...
16 #endregion 16 #endregion
Line 17... Line 17...
17   17  
18 #region Public Enums, Properties and Fields 18 #region Public Enums, Properties and Fields