mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-17 05:35:07 +00:00
Created S# .sln and moved project to src folder
This commit is contained in:
12
ICD.Common/EventArguments/CharEventArgs.cs
Normal file
12
ICD.Common/EventArguments/CharEventArgs.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using ICD.Common.Properties;
|
||||
|
||||
namespace ICD.Common.EventArguments
|
||||
{
|
||||
[PublicAPI]
|
||||
public sealed class CharEventArgs : GenericEventArgs<char>
|
||||
{
|
||||
public CharEventArgs(char value) : base(value)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user