Winify – Blame information for rev 66

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Drawing;
3  
4 namespace Winify.Gotify
5 {
6 public class GotifyNotificationEventArgs : EventArgs
7 {
8 #region Constructors, Destructors and Finalizers
9  
59 office 10 public GotifyNotificationEventArgs(GotifyMessage notification, Image image)
1 office 11 {
12 Notification = notification;
13 Image = image;
14 }
15  
16 #endregion
28 office 17  
18 #region Public Enums, Properties and Fields
19  
59 office 20 public GotifyMessage Notification { get; set; }
28 office 21  
22 public Image Image { get; set; }
23  
24 #endregion
1 office 25 }
26 }