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:
16
ICD.Common/Services/Logging/LogItemEventArgs.cs
Normal file
16
ICD.Common/Services/Logging/LogItemEventArgs.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using ICD.Common.EventArguments;
|
||||
|
||||
namespace ICD.Common.Services.Logging
|
||||
{
|
||||
public sealed class LogItemEventArgs : GenericEventArgs<LogItem>
|
||||
{
|
||||
/// <summary>
|
||||
/// Constructor.
|
||||
/// </summary>
|
||||
/// <param name="item"></param>
|
||||
public LogItemEventArgs(LogItem item)
|
||||
: base(item)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user