mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-10 18:24:53 +00:00
13 lines
209 B
C#
13 lines
209 B
C#
using ICD.Common.Properties;
|
|
|
|
namespace ICD.Common.EventArguments
|
|
{
|
|
[PublicAPI]
|
|
public sealed class CharEventArgs : GenericEventArgs<char>
|
|
{
|
|
public CharEventArgs(char value) : base(value)
|
|
{
|
|
}
|
|
}
|
|
}
|