Winify – Blame information for rev 28

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  
10 public GotifyNotificationEventArgs(GotifyNotification notification, Image image)
11 {
12 Notification = notification;
13 Image = image;
14 }
15  
16 #endregion
28 office 17  
18 #region Public Enums, Properties and Fields
19  
20 public GotifyNotification Notification { get; set; }
21  
22 public Image Image { get; set; }
23  
24 #endregion
1 office 25 }
26 }