Mercurial > silverbladetech
comparison Chronosv2/source/SingleInstanceEventArgs.cs @ 10:443821e55f06
Initial cleaned up add from Codeplex files
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Tue, 21 Feb 2012 17:25:44 +0700 |
parents | |
children | 741981715d94 |
comparison
equal
deleted
inserted
replaced
9:904a9faadf8b | 10:443821e55f06 |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 | |
4 namespace Chronos | |
5 { | |
6 /// <summary> | |
7 /// http://www.fishbowlclient.com/ | |
8 /// </summary> | |
9 public sealed class SingleInstanceEventArgs | |
10 : EventArgs | |
11 { | |
12 #region · Properties · | |
13 | |
14 public IList<string> Args | |
15 { | |
16 get; | |
17 internal set; | |
18 } | |
19 | |
20 #endregion | |
21 | |
22 #region · Constructors · | |
23 | |
24 public SingleInstanceEventArgs() | |
25 { | |
26 } | |
27 | |
28 #endregion | |
29 } | |
30 } |