Korero – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | using System; |
2 | using System.IO; |
||
3 | |||
4 | namespace Korero.Notifications |
||
5 | { |
||
6 | public class NotificationEventArgs : EventArgs |
||
7 | { |
||
8 | #region Public Enums, Properties and Fields |
||
9 | |||
10 | public int Timeout { get; set; } |
||
11 | |||
12 | public Stream Sound { get; set; } |
||
13 | |||
14 | public string Message { get; set; } |
||
15 | |||
16 | public string Title { get; set; } |
||
17 | |||
18 | #endregion |
||
19 | |||
20 | #region Constructors, Destructors and Finalizers |
||
21 | |||
22 | public NotificationEventArgs(string title, string message, Stream sound, int timeout) |
||
23 | { |
||
24 | Title = title; |
||
25 | Message = message; |
||
26 | Sound = sound; |
||
27 | Timeout = timeout; |
||
28 | } |
||
29 | |||
30 | #endregion |
||
31 | } |
||
32 | } |