Renamed project to ICD.Common.Utils

This commit is contained in:
jeff.thompson
2017-06-23 14:50:34 -04:00
parent 78eea65fc7
commit 2824f05180
93 changed files with 13 additions and 2 deletions

View 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)
{
}
}
}