Winify – Blame information for rev 1

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