Winify

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 59  →  ?path2? @ 67
/trunk/Winify/Gotify/GotifyMessageEventArgs.cs/GotifyNotificationEventArgs.cs
@@ -3,13 +3,13 @@
 
namespace Winify.Gotify
{
public class GotifyNotificationEventArgs : EventArgs
public class GotifyMessageEventArgs : EventArgs
{
#region Constructors, Destructors and Finalizers
 
public GotifyNotificationEventArgs(GotifyMessage notification, Image image)
public GotifyMessageEventArgs(GotifyMessage message, Image image)
{
Notification = notification;
Message = message;
Image = image;
}
 
@@ -17,7 +17,7 @@
 
#region Public Enums, Properties and Fields
 
public GotifyMessage Notification { get; set; }
public GotifyMessage Message { get; set; }
 
public Image Image { get; set; }