Winify – Diff between revs 1 and 28

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 1 Rev 28
1 using System; 1 using System;
2 using System.Drawing; 2 using System.Drawing;
3   3  
4 namespace Winify.Gotify 4 namespace Winify.Gotify
5 { 5 {
6 public class GotifyNotificationEventArgs : EventArgs 6 public class GotifyNotificationEventArgs : EventArgs
7 { 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 8 #region Constructors, Destructors and Finalizers
17   9  
18 public GotifyNotificationEventArgs(GotifyNotification notification, Image image) 10 public GotifyNotificationEventArgs(GotifyNotification notification, Image image)
19 { 11 {
20 Notification = notification; 12 Notification = notification;
21 Image = image; 13 Image = image;
22 } 14 }
-   15  
-   16 #endregion
-   17  
-   18 #region Public Enums, Properties and Fields
-   19  
-   20 public GotifyNotification Notification { get; set; }
-   21  
-   22 public Image Image { get; set; }
23   23  
24 #endregion 24 #endregion
25 } 25 }
26 } 26 }
27   27  
28
Generated by GNU Enscript 1.6.5.90.
28
Generated by GNU Enscript 1.6.5.90.
29   29  
30   30  
31   31