Winify – Diff between revs 1 and 28
?pathlinks?
Rev 1 | Rev 28 | |||
---|---|---|---|---|
Line 3... | Line 3... | |||
3 | |
3 | |
|
4 | namespace Winify.Gotify |
4 | namespace Winify.Gotify |
|
5 | { |
5 | { |
|
6 | public class GotifyNotificationEventArgs : EventArgs |
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 | |
7 | { |
|
Line 16... | Line 8... | |||
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; |
|
Line 21... | Line 13... | |||
21 | Image = image; |
13 | Image = image; |
|
- | 14 | } |
||
- | 15 | |
||
- | 16 | #endregion |
||
- | 17 | |
||
- | 18 | #region Public Enums, Properties and Fields |
||
- | 19 | |
||
- | 20 | public GotifyNotification Notification { get; set; } |
||
- | 21 | |
||
22 | } |
22 | public Image Image { get; set; } |
|
23 | |
23 | |
|
24 | #endregion |
24 | #endregion |