mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 20:54:58 +00:00
Renamed project to ICD.Common.Utils
This commit is contained in:
16
ICD.Common.Utils/Services/Logging/SeverityEventArgs.cs
Normal file
16
ICD.Common.Utils/Services/Logging/SeverityEventArgs.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using ICD.Common.EventArguments;
|
||||
|
||||
namespace ICD.Common.Services.Logging
|
||||
{
|
||||
public sealed class SeverityEventArgs : GenericEventArgs<eSeverity>
|
||||
{
|
||||
/// <summary>
|
||||
/// Constructor.
|
||||
/// </summary>
|
||||
/// <param name="data"></param>
|
||||
public SeverityEventArgs(eSeverity data)
|
||||
: base(data)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user