using ICD.Common.EventArguments; namespace ICD.Common.Services.Logging { public sealed class SeverityEventArgs : GenericEventArgs { /// /// Constructor. /// /// public SeverityEventArgs(eSeverity data) : base(data) { } } }