mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 04:35:00 +00:00
Created S# .sln and moved project to src folder
This commit is contained in:
13
ICD.Common/EventArguments/StringEventArgs.cs
Normal file
13
ICD.Common/EventArguments/StringEventArgs.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace ICD.Common.EventArguments
|
||||
{
|
||||
public sealed class StringEventArgs : GenericEventArgs<string>
|
||||
{
|
||||
/// <summary>
|
||||
/// Constructor.
|
||||
/// </summary>
|
||||
/// <param name="data"></param>
|
||||
public StringEventArgs(string data) : base(data)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user